You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2022/07/26 16:45:31 UTC

[GitHub] [iceberg] bryanck commented on a diff in pull request #5345: Parquet: Add option to set page row count limit

bryanck commented on code in PR #5345:
URL: https://github.com/apache/iceberg/pull/5345#discussion_r930199008


##########
core/src/main/java/org/apache/iceberg/TableProperties.java:
##########
@@ -143,6 +143,10 @@ private TableProperties() {
   public static final String DELETE_PARQUET_PAGE_SIZE_BYTES = "write.delete.parquet.page-size-bytes";
   public static final int PARQUET_PAGE_SIZE_BYTES_DEFAULT = 1024 * 1024; // 1 MB
 
+  public static final String PARQUET_PAGE_ROW_COUNT_LIMIT = "write.parquet.page-row-count-limit";
+  public static final String DELETE_PARQUET_PAGE_ROW_COUNT_LIMIT = "write.delete.parquet.page-row-count-limit";
+  public static final int PARQUET_PAGE_ROW_COUNT_LIMIT_DEFAULT = 20_000;

Review Comment:
   Yes, that's the Parquet default, so this shouldn't change any behavior if it isn't set.



-- 
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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org