J-HowHuang commented on code in PR #15368: URL: https://github.com/apache/pinot/pull/15368#discussion_r2017641431
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancer.java: ########## @@ -625,22 +651,35 @@ private RebalanceSummaryResult calculateDryRunSummary(Map<String, Map<String, St TableSizeReader.TableSubTypeSizeDetails tableSubTypeSizeDetails) { LOGGER.info("Calculating rebalance summary for table: {} with rebalanceJobId: {}", tableNameWithType, rebalanceJobId); + boolean isOfflineTable = TableNameBuilder.getTableTypeFromTableName(tableNameWithType) == TableType.OFFLINE; int existingReplicationFactor = 0; int newReplicationFactor = 0; Map<String, Set<String>> existingServersToSegmentMap = new HashMap<>(); Map<String, Set<String>> newServersToSegmentMap = new HashMap<>(); + Map<String, Set<String>> existingServersToConsumingSegmentMap = isOfflineTable ? null : new HashMap<>(); + Map<String, Set<String>> newServersToConsumingSegmentMap = isOfflineTable ? null : new HashMap<>(); for (Map.Entry<String, Map<String, String>> entrySet : currentAssignment.entrySet()) { existingReplicationFactor = entrySet.getValue().size(); for (String segmentKey : entrySet.getValue().keySet()) { existingServersToSegmentMap.computeIfAbsent(segmentKey, k -> new HashSet<>()).add(entrySet.getKey()); + if (existingServersToConsumingSegmentMap != null && entrySet.getValue() + .get(segmentKey) + .equals(SegmentStateModel.CONSUMING)) { + existingServersToConsumingSegmentMap.computeIfAbsent(segmentKey, k -> new HashSet<>()).add(entrySet.getKey()); + } Review Comment: Thanks for reminding, I forgot this while rewriting it -- 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