データベース接続のチューニング
接続プールアーキテクチャー
Whenever Jira needs to access (read from or write to) its database, a database connection is required.
A database connection is a large and complex object that handles all communication between Jira and its database. As such, database connections are time-consuming to establish and consume a significant amount of memory on both the client (the Jira application) and the database server.
To avoid the impact of creating a new database connection for each Jira's database access request, a pool of pre-established database connections is maintained. Each new database access request made by Jira uses a connection from this pool of pre-established connections, as required. This results in the following:
- When Jira starts up, a minimum number of database connections are established in the pool between Jira and its database.
- When Jira needs to access its database, it:
- プールに対してデータベース接続を要求します
- そのデータベース接続を使用してデータベースの読み出しまたは書き込みを行います
- 処理が終了するとデータベース接続をプールに戻す
If the frequency of Jira's database access requests begins to exceed the number of available database connections in the pool, extra connections are automatically created to handle the load.
Conversely, if the frequency of Jira's database access requests begins to drop below the number of available database connections in the pool, connections can be automatically closed to release resources back to the system.
最近のデータベースは十分なメモリーさえあれば数百の接続を比較的簡単に処理できますが、クライアント側ではこれらの接続は大量のメモリーを消費します。そのため、最大接続数をそれよりずっと小さい数に制限して、接続する必要が生じたアプリケーションが待つことなく接続を利用できるようにするのが一般的です。
Tuning Jira's database connections
- Shut down your Jira installation.
- 次のいずれかのオプションを選択して進めます。
- Use the Jira configuration tool to tune Jira 's database connections.
- Jira ホーム ディレクトリのルートにある
dbconfig.xml
ファイルを編集します。
Use Jira configuration tool to start Jira 's database connections
- Start the Jira configuration tool:
- Windows: コマンド プロンプトを開いて、Jira インストール ディレクトリの
bin
サブディレクトリにあるconfig.bat
を実行します。 Linux/Unix: コンソールを開いて、Jira インストール ディレクトリの
bin
サブディレクトリにあるconfig.sh
を実行します。このコマンドは「No X11 DISPLAY 変数が原因で Jira アプリケーション設定ツールを起動できなかったのは、設定エラーによるもの」に記載のエラーで失敗する場合があります。その場合は、この記事の回避策をご参照ください。
You may need to set theJAVA_HOME
environment variable to run the Jira configuration tool. See Installing Java for details. - Windows: コマンド プロンプトを開いて、Jira インストール ディレクトリの
- Once the Jira configuration tool is running, select the Advanced tab.
このタブで利用可能なオプションの詳細については「接続プールの設定」をご参照ください。これらのオプションの値を指定するには、先にその一番左のチェックボックスをチェックする必要があります。
前のスクリーンショットのいくつかのオプションは単純なチェックボックスです。これらのチェックボックスをチェックするとそれに関連するオプションの値が「true」に、逆にチェックを外すとそれに関連するオプションの値が「false」に設定されます。
- 変更を保存します。これらは要素として
dbconfig.xml
ファイルに保存されます。
Editing the dbconfig.xml file to start Jira 's database connections
次の手順に従って、Jira ホーム ディレクトリのルートにある dbconfig.xml
ファイルを編集します。
- Refer to the Connection pool settings for more information about the elements you can add to your
dbconfig.xml
file to fine-tune Jira 's database connection. - 編集済みの
dbconfig.xml
ファイルを保存します。 - Restart your Jira installation.
DBCP 設定
- 設定の既定値は、次のいずれかが実行された後に
dbconfig.xml
ファイルに書き込まれます。 - Jira セットアップ ウィザードを実行した。
- すべてのオプションで左端のチェックボックスをチェックしていない場合でも、Jira 設定ツールの [詳細設定] タブによってデータベース接続を設定した。
- 設定の既定値で注記「dbconfig.xml で指定されていない場合」が表示された場合は、次のいずれかを意味します。
- Jira セットアップ ウィザードを実行した後、関連要素が
dbconfig.xml
ファイルに書き込まれなかった。 - 次のいずれかの方法で、関連要素が
dbconfig.xml
ファイルに書き込まれた。 - 担当ユーザーが手動で書き込んだ。
- 左端のチェックボックスをチェックしてこれらのオプションの値を設定することで、[詳細設定] タブのオプションに従って指定された。
- 設定の既定値で注記「dbconfig.xml で指定されていない場合」が表示された場合は、dbconfig.xml ファイルに存在しなくてもシステムはこの値を考慮します。
次の表に、すべての接続プール設定とその構成を示します。
Jira configuration tool Advanced tab option | | 既定値 | 説明 |
最大サイズ |
| 20 | いつでもオープンできるデータベース接続の最大数。 |
最大アイドル状態 |
| Maximum Size の値 | プール内でアイドル状態のまま保持可能なデータベース接続の最大数。 |
最小サイズ |
( | Maximum Size の値 | いつでもオープンできるアイドル状態のデータベース接続の最小数。 |
最小アイドル状態 |
| 最小サイズの値 | プール内でアイドル状態のまま保持可能なデータベース接続の最小数。 |
初期サイズ |
| 0 | プール内でオープンされるデータベース接続の初期値。 This setting is not usually configured to other values than the default one, because database connections are created fast when Jira starts up. |
最大待機時間 |
| 30000 | The length of time in milliseconds when Jira is allowed to wait for a database connection to become available before returning an error, while there are no free ones in the pool. |
高度な設定通常、次の設定は変更不要です。必要に応じて Apache DBCP ドキュメントをご参照ください。 | |||
プールステートメント |
|
| データベース接続プールにおいてプリペアドステートメントのプーリングを有効にします。 Do not change the default value as it will cause exceptions. For more information, see JRA-44908 - Getting issue details... STATUS |
最大オープンステートメント |
|
| ステートメントプールから同時に割り当て可能な空きステートメントの最大数。 例外の原因となるため、既定値は変更しないでください。 |
バリデーションクエリ |
|
(または、 | 接続プールから取り出された接続の検証を行う SQL クエリです。指定する場合、クエリは少なくとも1つの行を返す SQL SELECT 文でなければなりません。 |
バリデーションクエリのタイムアウト |
|
(または、 | MySQL に対してのみ設定してください。他のデータベースで検証クエリ タイムアウトの設定を使用すると、Jira インスタンスのパフォーマンスに悪影響を及ぼします。 検証クエリは処理量を最小限に抑えるように設計する必要があるため、この時間は非常に短くしてください。 |
借りるときにテスト |
|
検証クエリが明示的に指定されていない限り、これは有効になりません。既定の検証クエリがある MySQL については、例外で有効になります。 | Tests if a database connection is valid when it's borrowed from the database connection pool by Jira. |
返却時にテスト |
|
| Tests if a database connection is valid when it's returned to the database connection pool by Jira. |
アイドル状態にテスト |
|
| データベース接続がアイドル状態のときに正しく機能しているかどうかを定期的にテストします。 |
追い出し実行間の時間 |
|
(または、 | アイドル オブジェクトのエビクション スレッド実行間隔 (ミリ秒単位)。ゼロまたは負の値を指定すると、アイドル オブジェクトのエビクション スレッドは実行されません。 エビクション スレッドでは、アイドル状態にあるデータベース接続数が "最小アイドル状態" または "最大サイズ" の値を超えた場合にそれらの接続が削除されます。 |
追い出し可能な最小限のアイドル時間 |
|
(または、 | データベース接続プールでオブジェクトがアイドル状態になってから、エビクションの対象になるまでの最小時間。 |
クローズ漏れの削除 |
|
| データベース接続のクローズ漏れ状態が "クローズ漏れの削除のタイムアウト" の値を超えた場合にそれらのデータベース接続を削除するかどうかを示すフラグ。 既定値を変更しないでください。その結果、プールでクローズ漏れ状態の接続を復旧し、システム パフォーマンスの低下を防止できるようになります。 |
クローズ漏れの削除のタイムアウト |
|
| データベース接続がクローズ漏れと判定されるまでのアイドル状態継続時間 (秒単位)。 |
接続プールの監視
Jira provides a view of its database connection usage via the Database Monitoring page. See Monitoring database connection usage for more information.