You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pegasus.apache.org by zh...@apache.org on 2021/12/09 06:22:55 UTC

[incubator-pegasus] branch master updated: fix(config): duplicate worker_count and undefined thread pool in server config (#853)

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

zhaoliwei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git


The following commit(s) were added to refs/heads/master by this push:
     new b6df03f  fix(config): duplicate worker_count and undefined thread pool in server config (#853)
b6df03f is described below

commit b6df03f4ebe71eb694a96e3e20c2c76eb8eee38d
Author: Dan Wang <em...@126.com>
AuthorDate: Thu Dec 9 14:22:49 2021 +0800

    fix(config): duplicate worker_count and undefined thread pool in server config (#853)
---
 src/server/config.ini | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/server/config.ini b/src/server/config.ini
index 20e5659..67894f1 100644
--- a/src/server/config.ini
+++ b/src/server/config.ini
@@ -101,6 +101,12 @@
   worker_priority = THREAD_xPRIORITY_NORMAL
   worker_count = 24
 
+[threadpool.THREAD_POOL_META_SERVER]
+  name = meta_server
+  partitioned = false
+  worker_priority = THREAD_xPRIORITY_NORMAL
+  worker_count = 8
+
 [threadpool.THREAD_POOL_META_STATE]
   name = meta_state
   partitioned = true
@@ -139,7 +145,7 @@
 
 [threadpool.THREAD_POOL_BLOCK_SERVICE]
   name = block_service
-  worker_count = 8
+  partitioned = false
   worker_priority = THREAD_xPRIORITY_NORMAL
   worker_count = 8
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pegasus.apache.org
For additional commands, e-mail: commits-help@pegasus.apache.org