empiredan opened a new pull request #853: URL: https://github.com/apache/incubator-pegasus/pull/853
### What problem does this PR solve? <!--add issue link with summary if exists--> While running the pegasus server with the default server config, some logs will be found like: ``` overwrite default thread pool for task RPC_CM_QUERY_PARTITION_CONFIG_BY_INDEX from THREAD_POOL_META_SERVER to THREAD_POOL_DEFAULT overwrite default thread pool for task RPC_CM_QUERY_PARTITION_CONFIG_BY_INDEX_ACK from THREAD_POOL_META_SERVER to THREAD_POOL_DEFAULT ... WARNING: skip redefinition of option [threadpool.THREAD_POOL_BLOCK_SERVICE] worker_count (line 137), already defined as [threadpool.THREAD_POOL_BLOCK_SERVICE] worker_count (line 135) ``` By checking the server config, we can find: - `THREAD_POOL_META_SERVER` that is used as a thread pool for meta is not defined in the server config below, thus related tasks are pushed to `THREAD_POOL_DEFAULT` - There is a duplicate `worker_count` in section `[threadpool.THREAD_POOL_BLOCK_SERVICE]` ### What is changed and how does it work? - Add the definition of `THREAD_POOL_META_SERVER` - Replace the duplicate `worker_count` with the missing `partitioned` option ### Checklist <!--REMOVE the items that are not applicable--> ##### Tests <!-- At least one of them must be included. --> - No code ##### Code changes - No changes ##### Side effects - No ##### Related changes - No -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
