Jackie-Jiang commented on code in PR #15496: URL: https://github.com/apache/pinot/pull/15496#discussion_r2053103644
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/rebalance/DefaultRebalancePreChecker.java: ########## @@ -77,7 +78,9 @@ public Map<String, RebalancePreCheckerResult> check(PreCheckContext preCheckCont LOGGER.info("Start pre-checks for table: {} with rebalanceJobId: {}", tableNameWithType, rebalanceJobId); - Map<String, RebalancePreCheckerResult> preCheckResult = new HashMap<>(); + // Right now pre-check items are done sequentially. If pre-check items are to be done in parallel, we should not + // use linked hash map but to sort the result in the end + Map<String, RebalancePreCheckerResult> preCheckResult = new LinkedHashMap<>(); Review Comment: I don't have concern on the overhead. The concern is mostly for debug-ability and high level abstraction. Yeah we can revisit when changing the UI -- 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