Skip to content

Commit

Permalink
Avoid extreme undersizing of row groups in iceberg tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raunaqmorarka committed Jul 11, 2023
1 parent 112d559 commit e82b604
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static Session withSmallRowGroups(Session session)
{
return Session.builder(session)
.setCatalogSessionProperty("iceberg", "orc_writer_max_stripe_rows", "10")
.setCatalogSessionProperty("iceberg", "parquet_writer_block_size", "100B")
.setCatalogSessionProperty("iceberg", "parquet_writer_block_size", "1kB")
.setCatalogSessionProperty("iceberg", "parquet_writer_batch_size", "10")
.build();
}
Expand Down

0 comments on commit e82b604

Please sign in to comment.