Hi team, is the `FixedSegmentNameGenerator` suppor...
# troubleshooting
t
Hi team, is the
FixedSegmentNameGenerator
supported ? From the doc https://docs.pinot.apache.org/configuration-reference/job-specification#segment-name-generator-spec , only simple and normalizedDate name generator are supported.
k
I’d noticed that too, when tracking down an issue with segment name generation. Looking at the code, it seems like it should be supported.
SegmentGenerationTaskRunner.getSegmentNameGenerator()
maps from the “fixed” type in the config to
return new FixedSegmentNameGenerator(segmentNameGeneratorConfigs.get(SEGMENT_NAME));
t
thanks, I will try.
k
@troywinter did that work?
t
it works