ajantha-bhat commented on code in PR #6905: URL: https://github.com/apache/iceberg/pull/6905#discussion_r1115239163
########## docs/configuration.md: ########## @@ -58,6 +58,8 @@ Iceberg tables support table properties to configure table behavior, like the de | write.parquet.compression-level | null | Parquet compression level | | write.parquet.bloom-filter-enabled.column.col1 | (not set) | Enables writing a bloom filter for the column: col1| | write.parquet.bloom-filter-max-bytes | 1048576 (1 MB) | The maximum number of bytes for a bloom filter bitset | +| write.parquet.row-group-check-min-record-count | 100 | The minimum count of rows of checks of the page size and row group size | Review Comment: ```suggestion | write.parquet.row-group-check-min-record-count | 100 | The minimum record count for page size check and row group size check| ``` ########## docs/configuration.md: ########## @@ -58,6 +58,8 @@ Iceberg tables support table properties to configure table behavior, like the de | write.parquet.compression-level | null | Parquet compression level | | write.parquet.bloom-filter-enabled.column.col1 | (not set) | Enables writing a bloom filter for the column: col1| | write.parquet.bloom-filter-max-bytes | 1048576 (1 MB) | The maximum number of bytes for a bloom filter bitset | +| write.parquet.row-group-check-min-record-count | 100 | The minimum count of rows of checks of the page size and row group size | +| write.parquet.row-group-check-max-record-count | 10000 | The maximum count of rows of checks of the page size and row group size | Review Comment: ```suggestion | write.parquet.row-group-check-max-record-count | 10000 | The maximum record count for page size check and row group size check| ``` -- 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]
