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 <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]