Jackie-Jiang commented on a change in pull request #7222: URL: https://github.com/apache/pinot/pull/7222#discussion_r679550991
########## File path: pinot-plugins/pinot-batch-ingestion/pinot-batch-ingestion-common/src/main/java/org/apache/pinot/plugin/ingestion/batch/common/SegmentGenerationTaskRunner.java ########## @@ -149,6 +155,9 @@ private SegmentNameGenerator getSegmentNameGenerator() { Boolean.parseBoolean(segmentNameGeneratorConfigs.get(EXCLUDE_SEQUENCE_ID)), IngestionConfigUtils.getBatchSegmentIngestionType(tableConfig), IngestionConfigUtils.getBatchSegmentIngestionFrequency(tableConfig), dateTimeFormatSpec); + case INPUT_FILE_SEGMENT_NAME_GENERATOR: + return new InputFileSegmentNameGenerator(segmentNameGeneratorConfigs.get(FILE_PATH_PATTERN), Review comment: I feel a much simpler solution would be resolve the segment name here and use `FixedSegmentNameGenerator` instead. There is no guarantee that the input file used to generate the segment is never moved. -- 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