Umeshkumar9414 commented on code in PR #7375:
URL: https://github.com/apache/hbase/pull/7375#discussion_r2466622889
##########
hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/AssignmentManager.java:
##########
@@ -2303,12 +2363,14 @@ public void markRegionAsSplit(final RegionInfo parent,
final ServerName serverNa
public void markRegionAsMerged(final RegionInfo child, final ServerName
serverName,
RegionInfo[] mergeParents) throws IOException {
final RegionStateNode node =
regionStates.getOrCreateRegionStateNode(child);
- node.setState(State.MERGED);
for (RegionInfo ri : mergeParents) {
regionStates.deleteRegion(ri);
+ regionInTransitionTracker.handleRegionDelete(ri);
}
+ // TODO need to handle delete and new region
Review Comment:
yes handled.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]