aryangupta1998 commented on code in PR #8410: URL: https://github.com/apache/ozone/pull/8410#discussion_r2085266766
########## hadoop-hdds/server-scm/src/main/java/org/apache/hadoop/hdds/scm/safemode/OneReplicaPipelineSafeModeRule.java: ########## @@ -171,6 +185,25 @@ public synchronized void refresh(boolean forceRefresh) { } } + private void updateReportedPipelineSet() { + List<Pipeline> openRatisPipelines = + pipelineManager.getPipelines(RatisReplicationConfig.getInstance(ReplicationFactor.THREE), + Pipeline.PipelineState.OPEN); + + for (Pipeline pipeline : openRatisPipelines) { + PipelineID pipelineID = pipeline.getId(); + boolean allDNsPipelineReported = pipeline.getNodeSet().size() == 3; Review Comment: This check ensures that all three DN have reported that particular pipeline. -- 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: issues-unsubscr...@ozone.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org For additional commands, e-mail: issues-h...@ozone.apache.org