From 1e4fe4252329fcfacee53035007dd273f90e3c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E5=8B=87=E5=8D=87=20pengys?= <8082209@qq.com> Date: Tue, 18 Jun 2019 16:07:50 +0800 Subject: [PATCH] Update ES-Server-FAQ.md (#2897) * Update ES-Server-FAQ.md [Thread Pool](https://www.elastic.co/guide/en/elasticsearch/reference/6.3/modules-threadpool.html?nsukey=W48pJFXgvLgtyfM%2FXI%2FQ8BhcPYE0WjNFGwKD%2Bv0cjUkocQhh1FCPQwklwVBOec541GcUkX899f%2FQv5ikjA8ckqdcrlVHpjATTKbJarNA1Gr%2BltpTiDJe%2FMuqrZGa0CAkbLfIGrYqMyc0s%2BlkxFr%2BzEo2hmWsgMaPZvK9K6f9Xugz0k0v1Wb2nfeex8ZQn0Y9SFEHwRaYV5uzw8rnH9I%2BGg%3D%3D) From this document, we can find that the bulk thread pool setting is deleted. write For single-document index/delete/update and bulk requests. Thread pool type is fixed with a size of # of available processors, queue_size of 200. The maximum size for this pool is 1 + # of available processors. * Update ES-Server-FAQ.md --- docs/en/FAQ/ES-Server-FAQ.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/en/FAQ/ES-Server-FAQ.md b/docs/en/FAQ/ES-Server-FAQ.md index c9db6d761..938991695 100644 --- a/docs/en/FAQ/ES-Server-FAQ.md +++ b/docs/en/FAQ/ES-Server-FAQ.md @@ -12,11 +12,8 @@ Some new user may face the following error in ElasticSearch storage. ERROR CODE You could add following config to `elasticsearch.yml`, set the value based on your env. ```yml # In tracing scenario, consider to set more than this at least. -thread_pool.bulk.queue_size: 1000 - -thread_pool.bulk.size: 16 thread_pool.index.queue_size: 500 -thread_pool.write.queuq_size: 500 +thread_pool.write.queue_size: 500 # When you face query error at trace page, remember to check this. index.max_result_window: 1000000