Revert "HBASE-20973 ArrayIndexOutOfBoundsException when rolling back procedure"

This reverts commit 1b1dabd1f5.
This commit is contained in:
zhangduo 2018-10-26 21:27:44 +08:00
parent f71768308c
commit 3c85775544
1 changed files with 0 additions and 18 deletions

View File

@ -376,24 +376,6 @@ public class ProcedureStoreTracker {
}
private BitSetNode getOrCreateNode(long procId) {
// See HBASE-20973, grow or merge can lead to ArrayIndexOutOfBoundsException
// The root cause is not revealed yet, disable grow or merge for now
return getOrCreateNodeNoGrowOrMerge(procId);
}
private BitSetNode getOrCreateNodeNoGrowOrMerge(long procId) {
Map.Entry<Long, BitSetNode> entry = map.floorEntry(procId);
if (entry != null && entry.getValue().contains(procId)) {
return entry.getValue();
} else {
BitSetNode node = new BitSetNode(procId, partial);
assert !map.containsKey(node.getStart());
map.put(node.getStart(), node);
return node;
}
}
private BitSetNode getOrCreateNodeWithGrowOrMerge(long procId) {
// If procId can fit in left node (directly or by growing it)
BitSetNode leftNode = null;
boolean leftCanGrow = false;