Elasticsearch index fails due to garbage collection overhead

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Data Center のみ - この記事は、Data Center プラットフォームのアトラシアン製品にのみ適用されます。

この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。

*Fisheye および Crucible は除く

 

要約

Elasticsearch fails to index content from Bitbucket.

環境

  • Bitbucket Data Center 7.7.1 with one node only
  • Bundled Elasticsearch 7.5

診断

This error is found on the search logs:

Search log
[2020-01-06T11:05:13,248][WARN ][o.e.m.j.JvmGcMonitorService] [bitbucket_bundled][gc][6577647] overhead, spent [1.5s] collecting in the last [2.3s]
[2020-01-06T11:05:17,287][WARN ][o.e.m.j.JvmGcMonitorService] [bitbucket_bundled][gc][6577649] overhead, spent [2.7s] collecting in the last [3s]
[2020-01-06T11:06:27,699][WARN ][o.e.m.j.JvmGcMonitorService] [bitbucket_bundled][gc][young][6577718][7632] duration [2.2s], collections [1]/[2.3s], total [2.2s]/[5.7m], memory [2.7gb]->[1.8gb]/[3.8gb], all_pools {[young] [969.4mb]->[1.5mb]/[1gb]}{[survivor] [89mb]->[136.4mb]/[136.5mb]}{[old] [1.7gb]->[1.7gb]/[2.6gb]}

原因

This issue is caused because Elasticsearch heap memory is not properly sized to the size of the content available to index. The messages above show that the JVM is running continuous garbage collection cycles cleaning objects from memory, due to the small heap size allocated. During those GC cycles, the JVM will pause making Elasticsearch not responsive to index content.

The bundled Elasticsearch has a 1GB JVM heap memory by default

ソリューション

Increase JVM heap memory available for Elasticsearch.

  1. For the bundled version of Elasticsearch edit the <BITBUCKET_HOME>/search/config/jvm.option and change the following properties from:
# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space

-Xms1g
-Xmx1g

変更後:

# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space

-Xms2g
-Xmx2g

2. Restart Bitbucket.

(info) We recommend increasing the heap in 1GB increments until the overhead messages are not shown anymore on the search logs.

External Elasticsearch

If you are running an external Elasticsearch instance, please refer to the article below for steps on how to increase heap memory.

Elasticsearch 7.5 Setting the heap size



最終更新日 2023 年 8 月 18 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.