You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2021/05/03 15:22:06 UTC

[GitHub] [hbase] pankaj72981 commented on a change in pull request #3218: HBASE-25835 Ignore duplicate split requests from regionserver reports

pankaj72981 commented on a change in pull request #3218:
URL: https://github.com/apache/hbase/pull/3218#discussion_r625163309



##########
File path: hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/AssignmentManager.java
##########
@@ -1126,7 +1126,13 @@ private void updateRegionSplitTransition(final ServerName serverName, final Tran
       LOG.debug("Split request from " + serverName +
           ", parent=" + parent + " splitKey=" + Bytes.toStringBinary(splitKey));
     }
-    master.getMasterProcedureExecutor().submitProcedure(createSplitProcedure(parent, splitKey));
+    if (regionStates.getRegionState(parent).isOpened() &&

Review comment:
       Do we need `!regionStates.getRegionState(parent).isSplitting()` check here? When region state is OPEN it will be always true.




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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org