swaminathanmanish commented on code in PR #11650:
URL: https://github.com/apache/pinot/pull/11650#discussion_r1342198858
##########
pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/creator/name/SimpleSegmentNameGenerator.java:
##########
@@ -40,13 +40,14 @@ public class SimpleSegmentNameGenerator implements
SegmentNameGenerator {
private final String _segmentNamePrefix;
private final String _segmentNamePostfix;
private final boolean _appendUUIDToSegmentName;
+ private final boolean _omitTimestampsInSegmentName;
public SimpleSegmentNameGenerator(String segmentNamePrefix, @Nullable String
segmentNamePostfix) {
- this(segmentNamePrefix, segmentNamePostfix, false);
+ this(segmentNamePrefix, segmentNamePostfix, false, false);
Review Comment:
Yes defaults to false, so should be good.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]