tibrewalpratik17 commented on code in PR #12459: URL: https://github.com/apache/pinot/pull/12459#discussion_r1534722096
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/generator/BaseTaskGenerator.java: ########## @@ -120,4 +123,23 @@ public List<PinotTaskConfig> generateTasks(TableConfig tableConfig, Map<String, throws Exception { throw new UnknownTaskTypeException("Adhoc task generation is not supported for task type - " + this.getTaskType()); } + + @Override + public void generateTasks(List<TableConfig> tableConfigs, List<PinotTaskConfig> pinotTaskConfigs) + throws Exception { + pinotTaskConfigs.addAll(generateTasks(tableConfigs)); + } + + @Override + public String getMinionInstanceTag(TableConfig tableConfig) { + TableTaskConfig tableTaskConfig = tableConfig.getTaskConfig(); + if (tableTaskConfig != null) { + Map<String, String> configs = tableTaskConfig.getConfigsForTaskType(getTaskType()); + if (!configs.isEmpty()) { + return configs.getOrDefault(PinotTaskManager.MINION_INSTANCE_TAG_CONFIG, Review Comment: It's difficult to add in TableConfigUtils as we don't have HelixManager present in that class. -- 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