HBASE-3449 Server shutdown handlers deadlocked waiting for META
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1061575 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e0c98543f1
commit
ff21baac60
|
@ -26,6 +26,7 @@ Release 0.91.0 - Unreleased
|
|||
between memstore/snapshot and storefiles
|
||||
HBASE-3403 Region orphaned after failure during split
|
||||
HBASE-3387 Pair does not deep check arrays for equality -- REVERT THIS PATCH
|
||||
HBASE-3449 Server shutdown handlers deadlocked waiting for META
|
||||
|
||||
|
||||
IMPROVEMENTS
|
||||
|
|
|
@ -524,7 +524,7 @@ implements HMasterInterface, HMasterRegionInterface, MasterServices, Server {
|
|||
this.executorService.startExecutorService(ExecutorType.MASTER_SERVER_OPERATIONS,
|
||||
conf.getInt("hbase.master.executor.serverops.threads", 3));
|
||||
this.executorService.startExecutorService(ExecutorType.MASTER_META_SERVER_OPERATIONS,
|
||||
conf.getInt("hbase.master.executor.serverops.threads", 2));
|
||||
conf.getInt("hbase.master.executor.serverops.threads", 5));
|
||||
// We depend on there being only one instance of this executor running
|
||||
// at a time. To do concurrency, would need fencing of enable/disable of
|
||||
// tables.
|
||||
|
|
Loading…
Reference in New Issue