wardlican commented on PR #3856: URL: https://github.com/apache/amoro/pull/3856#issuecomment-3684771421
Referencing Spark/Iceberg's SizeBasedFileRewritePlanner, the number of output files is determined intelligently: | Condition | Decision | | ----------- | ----------- | | Remainder > minFileSize (default 0.75 * targetSize) | Retain the remainder file (round up) | | avgFileSizeWithoutRemainder < 1.1 * targetSize | Distribute the remainder to other files (rounding down) | | other | Retain the remainder file (round up) | -- 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]
