Skip to content

Commit

Permalink
Parquet: Update parquet to 1.13.1 (apache#7301)
Browse files Browse the repository at this point in the history
* Parquet: Update parquet to 1.13.0

* fix aliyun failures

* Disable dictionary encoding to make sure BF always gets created

* Update the doc

* point to 1.13.1 using staging repo until officially released

* revert staging remote repo

* remove apache commons dep

* address review feedback

---------

Co-authored-by: Prashant Singh <psinghvk@amazon.com>
  • Loading branch information
singhpk234 and Prashant Singh authored May 19, 2023
1 parent 2f61a08 commit 14a30c0
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 47 deletions.
3 changes: 3 additions & 0 deletions core/src/main/java/org/apache/iceberg/TableProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ private TableProperties() {}
public static final String DELETE_PARQUET_PAGE_ROW_LIMIT = "write.delete.parquet.page-row-limit";
public static final int PARQUET_PAGE_ROW_LIMIT_DEFAULT = 20_000;

public static final String PARQUET_DICT_ENABLED = "write.parquet.enable.dictionary";
public static final boolean PARQUET_DICT_ENABLED_DEFAULT = true;

public static final String PARQUET_DICT_SIZE_BYTES = "write.parquet.dict-size-bytes";
public static final String DELETE_PARQUET_DICT_SIZE_BYTES =
"write.delete.parquet.dict-size-bytes";
Expand Down
Loading

0 comments on commit 14a30c0

Please sign in to comment.