aishikbh commented on code in PR #12220: URL: https://github.com/apache/pinot/pull/12220#discussion_r1452056354
########## pinot-core/src/main/java/org/apache/pinot/core/segment/processing/framework/SegmentConfig.java: ########## @@ -31,22 +31,28 @@ @JsonIgnoreProperties(ignoreUnknown = true) public class SegmentConfig { public static final int DEFAULT_MAX_NUM_RECORDS_PER_SEGMENT = 5_000_000; + public static final long DEFAULT_INTERMEDIATE_FILE_SIZE_THRESHOLD = Long.MAX_VALUE; private final int _maxNumRecordsPerSegment; private final String _segmentNamePrefix; private final String _segmentNamePostfix; private final String _fixedSegmentName; + private final long _intermediateFileSizeThresholdInBytes; Review Comment: changed. -- 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