You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by pe...@apache.org on 2019/06/18 07:25:38 UTC

[skywalking] branch peng-yongsheng-patch-1 created (now b6ee8f3)

This is an automated email from the ASF dual-hosted git repository.

pengys pushed a change to branch peng-yongsheng-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


      at b6ee8f3  Update ES-Server-FAQ.md

This branch includes the following new commits:

     new b6ee8f3  Update ES-Server-FAQ.md

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking] 01/01: Update ES-Server-FAQ.md

Posted by pe...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pengys pushed a commit to branch peng-yongsheng-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking.git

commit b6ee8f3fdddf55c8a21a5b6d16e149d3fe72c7ba
Author: 彭勇升 pengys <pe...@apache.org>
AuthorDate: Tue Jun 18 15:25:31 2019 +0800

    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.
---
 docs/en/FAQ/ES-Server-FAQ.md | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/docs/en/FAQ/ES-Server-FAQ.md b/docs/en/FAQ/ES-Server-FAQ.md
index c9db6d7..aea4442 100644
--- a/docs/en/FAQ/ES-Server-FAQ.md
+++ b/docs/en/FAQ/ES-Server-FAQ.md
@@ -12,9 +12,6 @@ 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