From 3274eab41dd885c9ef8a51eedd31b5f5ba21cc8b Mon Sep 17 00:00:00 2001 From: wyukawa Date: Tue, 4 Apr 2017 11:39:24 +0900 Subject: [PATCH] Fix bulk queue size in thread pool docs This commit fixes an incorrect specification for the default queue size for the bulk thread pool in the thread pool docs. Relates #23870 --- docs/reference/modules/threadpool.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/modules/threadpool.asciidoc b/docs/reference/modules/threadpool.asciidoc index 8f3a524dbdd..01b204b510f 100644 --- a/docs/reference/modules/threadpool.asciidoc +++ b/docs/reference/modules/threadpool.asciidoc @@ -32,7 +32,7 @@ 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`. The maximum size for this pool + queue_size of `200`. The maximum size for this pool is `1 + # of available processors`. `snapshot`::