HBASE-13348 Separate the thread number configs for meta server and server operations (Shaohui Liu)

This commit is contained in:
Liu Shaohui 2015-04-01 09:54:26 +08:00
parent e156ed619c
commit 9b2b0abccd
1 changed files with 1 additions and 1 deletions

View File

@ -993,7 +993,7 @@ public class HMaster extends HRegionServer implements MasterServices, Server {
this.service.startExecutorService(ExecutorType.MASTER_SERVER_OPERATIONS, this.service.startExecutorService(ExecutorType.MASTER_SERVER_OPERATIONS,
conf.getInt("hbase.master.executor.serverops.threads", 5)); conf.getInt("hbase.master.executor.serverops.threads", 5));
this.service.startExecutorService(ExecutorType.MASTER_META_SERVER_OPERATIONS, this.service.startExecutorService(ExecutorType.MASTER_META_SERVER_OPERATIONS,
conf.getInt("hbase.master.executor.serverops.threads", 5)); conf.getInt("hbase.master.executor.meta.serverops.threads", 5));
this.service.startExecutorService(ExecutorType.M_LOG_REPLAY_OPS, this.service.startExecutorService(ExecutorType.M_LOG_REPLAY_OPS,
conf.getInt("hbase.master.executor.logreplayops.threads", 10)); conf.getInt("hbase.master.executor.logreplayops.threads", 10));