rajagopr commented on code in PR #14257: URL: https://github.com/apache/pinot/pull/14257#discussion_r1813047225
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/PinotTaskManager.java: ########## @@ -611,9 +613,14 @@ private synchronized List<String> scheduleTask(String taskType, List<String> tab @Nullable private List<String> scheduleTask(PinotTaskGenerator taskGenerator, List<TableConfig> enabledTableConfigs, boolean isLeader, @Nullable String minionInstanceTagForTask) { - LOGGER.info("Trying to schedule task type: {}, isLeader: {}", taskGenerator.getTaskType(), isLeader); - Map<String, List<PinotTaskConfig>> minionInstanceTagToTaskConfigs = new HashMap<>(); String taskType = taskGenerator.getTaskType(); + List<String> enabledTables = + enabledTableConfigs.stream().map(TableConfig::getTableName).collect(Collectors.toList()); + LOGGER.info("Trying to schedule task type: {}, for tables: {}, isLeader: {}", taskType, enabledTables, isLeader); + if (!isTaskSchedulable(taskType, enabledTables)) { Review Comment: That is correct. -- 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