J-HowHuang commented on code in PR #15368: URL: https://github.com/apache/pinot/pull/15368#discussion_r2025666537
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/rebalance/TableRebalancer.java: ########## @@ -627,22 +644,42 @@ private RebalanceSummaryResult calculateDryRunSummary(Map<String, Map<String, St TableSizeReader.TableSubTypeSizeDetails tableSubTypeSizeDetails, TableConfig tableConfig) { 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()); + String segmentName = entrySet.getKey(); + Collection<String> segmentStates = entrySet.getValue().values(); + boolean isSegmentConsuming = existingServersToConsumingSegmentMap != null && segmentStates.stream() + .noneMatch(state -> state.equals(SegmentStateModel.ONLINE)) && segmentStates.stream() + .anyMatch(state -> state.equals(SegmentStateModel.CONSUMING)); + + for (String instanceName : entrySet.getValue().keySet()) { + existingServersToSegmentMap.computeIfAbsent(instanceName, k -> new HashSet<>()).add(segmentName); + if (isSegmentConsuming) { + existingServersToConsumingSegmentMap.computeIfAbsent(instanceName, k -> new HashSet<>()).add(segmentName); Review Comment: The reason behind is that a segment won't be considered "consuming segment to be moved" in the context of this rebalance if the segment has any replica committed, because the server can download the segment from the deep store and will become online after the rebalance (thus we check `segmentStates.stream().noneMatch(state -> state.equals(SegmentStateModel.ONLINE))`) -- 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