somandal commented on code in PR #15266: URL: https://github.com/apache/pinot/pull/15266#discussion_r2029525615
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/rebalance/ZkBasedTableRebalanceObserver.java: ########## @@ -284,4 +319,204 @@ public static TableRebalanceProgressStats.RebalanceStateStats getDifferenceBetwe (totalSegments == 0) ? 0 : ((double) rebalanceStats._segmentsToRebalance / totalSegments) * 100.0; return rebalanceStats; } + + /** + * Calculates the progress stats for the given step or for the overall based on the trigger type + * @return the calculated step or progress stats + */ + @VisibleForTesting + static TableRebalanceProgressStats.RebalanceProgressStats calculateUpdatedProgressStats( + Map<String, Map<String, String>> targetAssignment, Map<String, Map<String, String>> currentAssignment, + RebalanceContext rebalanceContext, Trigger trigger, TableRebalanceProgressStats rebalanceProgressStats) { + Map<String, Set<String>> existingServersToSegmentMap = new HashMap<>(); + Map<String, Set<String>> newServersToSegmentMap = new HashMap<>(); + Map<String, Set<String>> targetInstanceToOfflineSegmentsMap = new HashMap<>(); + Set<String> newSegmentsNotExistingBefore = new HashSet<>(); + + Set<String> segmentsToMonitor = rebalanceContext.getSegmentsToMonitor(); + int totalNewSegmentsNotMonitored = 0; + int totalSegmentsTarget = 0; + for (Map.Entry<String, Map<String, String>> entrySet : targetAssignment.entrySet()) { + String segmentName = entrySet.getKey(); + if (!rebalanceContext.getUniqueSegments().contains(segmentName)) { + newSegmentsNotExistingBefore.add(segmentName); + } + for (Map.Entry<String, String> entry : entrySet.getValue().entrySet()) { + String instanceName = entry.getKey(); + String instanceState = entry.getValue(); + if (segmentsToMonitor != null && !segmentsToMonitor.contains(segmentName)) { Review Comment: done -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org