Update threadpool.asciidoc target_response_time (#28655)
Update doc for "target_reponse~~_rate~~_time" param source => https://github.com/elastic/elasticsearch/blob/6.2/server/src/main/java/org/elasticsearch/threadpool/AutoQueueAdjustingExecutorBuilder.java#L65
This commit is contained in:
parent
9e23b7ed72
commit
974ad680f5
|
@ -120,7 +120,7 @@ The `auto_queue_frame_size` setting controls the number of operations during
|
||||||
which measurement is taken before the queue is adjusted. It should be large
|
which measurement is taken before the queue is adjusted. It should be large
|
||||||
enough that a single operation cannot unduly bias the calculation.
|
enough that a single operation cannot unduly bias the calculation.
|
||||||
|
|
||||||
The `target_response_rate` is a time value setting that indicates the targeted
|
The `target_response_time` is a time value setting that indicates the targeted
|
||||||
average response time for tasks in the thread pool queue. If tasks are routinely
|
average response time for tasks in the thread pool queue. If tasks are routinely
|
||||||
above this time, the thread pool queue will be adjusted down so that tasks are
|
above this time, the thread pool queue will be adjusted down so that tasks are
|
||||||
rejected.
|
rejected.
|
||||||
|
@ -134,7 +134,7 @@ thread_pool:
|
||||||
min_queue_size: 10
|
min_queue_size: 10
|
||||||
max_queue_size: 1000
|
max_queue_size: 1000
|
||||||
auto_queue_frame_size: 2000
|
auto_queue_frame_size: 2000
|
||||||
target_response_rate: 1s
|
target_response_time: 1s
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
[float]
|
[float]
|
||||||
|
|
Loading…
Reference in New Issue