aishikbh commented on code in PR #12220: URL: https://github.com/apache/pinot/pull/12220#discussion_r1452056077
########## pinot-core/src/main/java/org/apache/pinot/core/common/MinionConstants.java: ########## @@ -104,6 +104,7 @@ public static abstract class MergeTask { // Segment config public static final String MAX_NUM_RECORDS_PER_TASK_KEY = "maxNumRecordsPerTask"; public static final String MAX_NUM_RECORDS_PER_SEGMENT_KEY = "maxNumRecordsPerSegment"; + public static final String INTERMEDIATE_FILE_SIZE_KEY = "intermediateFileSizeThresholdInBytes"; Review Comment: changed. ########## 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; 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