Remove mention of bulk threadpool in examples (#41935)

The `bulk` threadpool is now called `write`, but `bulk` is still
used in some examples. This commit fixes that.

Also, the only way `threadpool.bulk.write: 30` is a valid increase in the size
of this threadpool is if you have 29 processors, which is an odd number of
processors to have. This commit removes the "more threads" bit.
This commit is contained in:
David Turner 2019-05-08 12:08:47 +01:00
parent 5c824f3993
commit 60f84a2eb2
1 changed files with 5 additions and 4 deletions

View File

@ -52,13 +52,14 @@ There are several thread pools, but the important ones include:
Mainly for java client executing of action when listener threaded is set to true. Mainly for java client executing of action when listener threaded is set to true.
Thread pool type is `scaling` with a default max of `min(10, (# of available processors)/2)`. Thread pool type is `scaling` with a default max of `min(10, (# of available processors)/2)`.
Changing a specific thread pool can be done by setting its type-specific parameters; for example, changing the `bulk` Changing a specific thread pool can be done by setting its type-specific
thread pool to have more threads: parameters; for example, changing the number of threads in the `write` thread
pool:
[source,yaml] [source,yaml]
-------------------------------------------------- --------------------------------------------------
thread_pool: thread_pool:
bulk: write:
size: 30 size: 30
-------------------------------------------------- --------------------------------------------------
@ -87,7 +88,7 @@ full, it will abort the request.
[source,yaml] [source,yaml]
-------------------------------------------------- --------------------------------------------------
thread_pool: thread_pool:
bulk: write:
size: 30 size: 30
queue_size: 1000 queue_size: 1000
-------------------------------------------------- --------------------------------------------------