Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/reference/modules/threadpool.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ There are several thread pools, but the important ones include:
`index`::
For index/delete operations. Thread pool type is `fixed`
with a size of `# of available processors`,
queue_size of `200`.
queue_size of `200`. The maximum size for this pool
is `# of available processors`.

`search`::
For count/search/suggest operations. Thread pool type is `fixed`
Expand All @@ -31,7 +32,8 @@ There are several thread pools, but the important ones include:
`bulk`::
For bulk operations. Thread pool type is `fixed`
with a size of `# of available processors`,
queue_size of `50`.
queue_size of `50`. The maximum size for this pool
is `# of available processors`.

`percolate`::
For percolate operations. Thread pool type is `fixed`
Expand Down