swaminathanmanish commented on code in PR #12459: URL: https://github.com/apache/pinot/pull/12459#discussion_r1534912490
########## 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: I see. It would be ideal to enforce some validation especially given that user has to enter this for every taskConfig. Im curious if we have any validation for table tenant. Can we keep track of this work? -- 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