...
web.xmlファイル(ファイルは、Yellowfin\appserver\webapps\ROOT\WEB-INF\にあります)の以下の項目で、調整が必要なパラメーターをコメントアウトします。
Code Block | ||
---|---|---|
| ||
<!-- Execution queue values -->
<!-- Uncomment these values if you want to customise the behaviour of the background execution queue.
ExecutionQueueConcurrentTasks: The number of reports that can be run concurrently.
Default: 5 times the number of CPU cores available on the server.
ExecutionQueueInitialWaitTime: How long the server will wait (in seconds) to finish a report before
the client shows the delivery popup and start polling.
Default: 5 seconds
ExecutionQueueMaximumExecutionTime: The maximum time (in minutes) the reports can be running in the
execution queue before they are killed.
Default: 240 minutes (4 hours)
<init-param>
<param-name>ExecutionQueueConcurrentTasks</param-name>
<param-value>10</param-value>
</init-param>
<init-param>
<param-name>ExecutionQueueInitialWaitTime</param-name>
<param-value>5</param-value>
</init-param>
<init-param>
<param-name>ExecutionQueueMaximumExecutionTime</param-name>
<param-value>240</param-value>
</init-param>
--> |
現在のタスク
こちらのオプションは、一度に「実行する」レポート数を設定することができます。
デフォルト値:5 × サーバ上で利用可能なCPU数
Code Block | ||
---|---|---|
| ||
<init-param>
<param-name>ExecutionQueueConcurrentTasks</param-name>
<param-value>10</param-value>
</init-param> |
イニシャル待機時間
こちらのオプションは、クライアントが配信ポップアップを表示し、ポーリングを始めるまで、レポート完了に要するサーバの待機時間を、秒単位で設定することができます。
デフォルト値:5秒
Code Block | ||
---|---|---|
| ||
<init-param>
<param-name>ExecutionQueueInitialWaitTime</param-name>
<param-value>5</param-value>
</init-param> |
最大実行時間
こちらのオプションは、停止され、削除されるまでの最大レポート実行時間を、分単位で設定することができます。
デフォルト値:240分(4時間)
Code Block | ||
---|---|---|
| ||
<init-param>
<param-name>ExecutionQueueMaximumExecutionTime</param-name>
<param-value>240</param-value>
</init-param> |