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:
Michael Stack 2011-01-20 23:47:37 +00:00
parent e0c98543f1
commit ff21baac60
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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.