mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
Added max-at thread info
Added max-at thread info for snapshot, warmer and refresh pools. See https://github.com/elastic/elasticsearch/blob/master/core/src/main/java/org/elasticsearch/threadpool/ThreadPool.java#L137
This commit is contained in:
parent
1069ad9fad
commit
ce8d07d9f4
1 changed files with 3 additions and 3 deletions
|
@ -41,15 +41,15 @@ There are several thread pools, but the important ones include:
|
|||
|
||||
`snapshot`::
|
||||
For snapshot/restore operations. Defaults to `scaling` with a
|
||||
keep-alive of `5m` and a size of `min(5, (# of available processors)/2)`.
|
||||
keep-alive of `5m` and a size of `min(5, (# of available processors)/2)`, max at 5.
|
||||
|
||||
`warmer`::
|
||||
For segment warm-up operations. Defaults to `scaling` with a
|
||||
keep-alive of `5m` and a size of `min(5, (# of available processors)/2)`.
|
||||
keep-alive of `5m` and a size of `min(5, (# of available processors)/2)`, max at 5.
|
||||
|
||||
`refresh`::
|
||||
For refresh operations. Defaults to `scaling` with a
|
||||
keep-alive of `5m` and a size of `min(10, (# of available processors)/2)`.
|
||||
keep-alive of `5m` and a size of `min(10, (# of available processors)/2)`, max at 10.
|
||||
|
||||
`listener`::
|
||||
Mainly for java client executing of action when listener threaded is set to true.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue