HBASE-25923 Region state stuck in PENDING_OPEN (#3312)
Signed-off-by: Andrew Purtell <apurtell@apache.org>
This commit is contained in:
parent
edd6ea9311
commit
ed1a75905c
|
@ -1958,6 +1958,11 @@ public class AssignmentManager extends ZooKeeperListener {
|
|||
// Can be a socket timeout, EOF, NoRouteToHost, etc
|
||||
LOG.info("Unable to communicate with " + destination
|
||||
+ " in order to assign regions, ", e);
|
||||
for (HRegionInfo region : regions) {
|
||||
if (!regionStates.isRegionOnline(region)) {
|
||||
invokeAssign(region);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
} finally {
|
||||
|
|
Loading…
Reference in New Issue