Skip to content

Commit b1d6bda

Browse files
changed data page size limit to 2mb
1 parent 509cb20 commit b1d6bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/storage/staging.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ pub fn parquet_writer_props(
327327
Encoding::DELTA_BINARY_PACKED,
328328
)
329329
.set_dictionary_enabled(false)
330-
.set_data_page_size_limit(512*1024);
330+
.set_data_page_size_limit(2*1024*1024);
331331

332332
for (field, index) in custom_partition_fields {
333333
let field = ColumnPath::new(vec![field]);

0 commit comments

Comments
 (0)