pvary commented on code in PR #14837: URL: https://github.com/apache/iceberg/pull/14837#discussion_r2619545832
########## core/src/main/java/org/apache/iceberg/actions/SizeBasedFileRewritePlanner.java: ########## @@ -107,6 +107,15 @@ public abstract class SizeBasedFileRewritePlanner< public static final long MAX_FILE_GROUP_SIZE_BYTES_DEFAULT = 100L * 1024 * 1024 * 1024; // 100 GB + /** + * This option controls the largest count of data that should be rewritten in a single file group. + * It helps with breaking down the rewriting of very large partitions which may not be rewritable + * otherwise due to the resource constraints of the cluster. + */ + public static final String MAX_FILE_GROUP_COUNT = "max-file-group-count"; Review Comment: nit: MAX_FILE_GROUP_INPUT_FILES -- 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]
