[DOCS] Document max_concurrent_searches default (#55116)

This commit is contained in:
James Rodewig 2020-04-15 10:02:33 -04:00
parent 8ff2cbf1a3
commit 8d6f0f6a76
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ There are several thread pools, but the important ones include:
For generic operations (for example, background node discovery).
Thread pool type is `scaling`.
[[search-threadpool]]
`search`::
For count/search/suggest operations. Thread pool type is
`fixed_auto_queue_size` with a size of `int((`<<node.processors,

View File

@ -78,7 +78,8 @@ include::{docdir}/rest-api/common-parms.asciidoc[tag=index-ignore-unavailable]
`max_concurrent_searches`::
(Optional, integer)
Maximum number of concurrent searches the multi search API can execute.
Maximum number of concurrent searches the multi search API can execute. Defaults
to +max(1, (# of <<data-node,data nodes>> * min(<<search-threadpool,search thread pool size>>, 10)))+.
`max_concurrent_shard_requests`::
+