[DOCS] Fix typo in thread pools docs (#59944) (#60019)

Fix typo where available processors should be allocated processors.

Co-authored-by: Leaf-Lin <39002973+Leaf-Lin@users.noreply.github.com>
This commit is contained in:
James Rodewig 2020-07-21 17:04:36 -04:00 committed by GitHub
parent 401e12dc2b
commit 293cb8d48c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ There are several thread pools, but the important ones include:
`search`::
For count/search/suggest operations. Thread pool type is
`fixed_auto_queue_size` with a size of `int((`<<node.processors,
`# of available_processors`>>`pass:[ * ]3) / 2) + 1`, and initial queue_size of
`# of allocated processors`>>`pass:[ * ]3) / 2) + 1`, and initial queue_size of
`1000`.
[[search-throttled]]`search_throttled`::
@ -72,7 +72,7 @@ There are several thread pools, but the important ones include:
For <<indices-flush,flush>>, <<indices-synced-flush-api,synced flush>>, and
<<index-modules-translog, translog>> `fsync` operations. Thread pool type is
`scaling` with a keep-alive of `5m` and a default maximum size of `min(5, (`
<<node.processors, `# of available processors`>>`) / 2)`.
<<node.processors, `# of allocated processors`>>`) / 2)`.
`force_merge`::
For <<indices-forcemerge,force merge>> operations.