HBASE-12124 Closed region could stay closed if master stops at bad time

This commit is contained in:
Jimmy Xiang 2014-09-30 15:51:20 -07:00
parent d8a055e220
commit 6851bbc83d

View File

@ -2918,6 +2918,9 @@ public class AssignmentManager extends ZooKeeperListener {
State state = regionState.getState();
LOG.info("Processing " + regionState);
switch (state) {
case CLOSED:
invokeAssign(regionState.getRegion());
break;
case PENDING_OPEN:
retrySendRegionOpen(regionState);
break;