fx19880617 commented on a change in pull request #6469: URL: https://github.com/apache/incubator-pinot/pull/6469#discussion_r562376630
########## File path: pinot-minion/src/main/java/org/apache/pinot/minion/executor/SegmentGenerationAndPushTaskExecutor.java ########## @@ -281,18 +282,27 @@ private SegmentGenerationTaskSpec generateTaskSpec(Map<String, String> taskConfi recordReaderSpec.setClassName(taskConfigs.get(BatchConfigProperties.RECORD_READER_CLASS)); recordReaderSpec.setConfigClassName(taskConfigs.get(BatchConfigProperties.RECORD_READER_CONFIG_CLASS)); taskSpec.setRecordReaderSpec(recordReaderSpec); + + String rawTableName = taskConfigs.get(BatchConfigProperties.TABLE_NAME); + String tableNameWithType = rawTableName != null ? TableNameBuilder.OFFLINE.tableNameWithType(rawTableName) : null; Schema schema; if (taskConfigs.containsKey(BatchConfigProperties.SCHEMA)) { schema = JsonUtils .stringToObject(JsonUtils.objectToString(taskConfigs.get(BatchConfigProperties.SCHEMA)), Schema.class); } else if (taskConfigs.containsKey(BatchConfigProperties.SCHEMA_URI)) { Review comment: Yes. And I also want to keep a config to allow the override for schema and table config, basically the field value and URI. ---------------------------------------------------------------- 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. 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