Browse Source

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
Pius 10 years ago
parent
commit
ce8d07d9f4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/reference/modules/threadpool.asciidoc

+ 3 - 3
docs/reference/modules/threadpool.asciidoc

@@ -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.