mapleFU commented on code in PR #8642:
URL: https://github.com/apache/arrow-rs/pull/8642#discussion_r2440258349
##########
parquet/src/bin/parquet-rewrite.rs:
##########
@@ -286,6 +244,10 @@ struct Args {
#[clap(long)]
writer_version: Option<WriterVersionArgs>,
+ /// Sets write batch size.
+ #[clap(long)]
+ write_batch_size: Option<usize>,
Review Comment:
Without batch-size, a small `data_page_row_count_limit` might not works
##########
parquet/src/bin/parquet-rewrite.rs:
##########
@@ -216,8 +174,8 @@ struct Args {
output: String,
/// Compression used for all columns.
- #[clap(long, value_enum)]
- compression: Option<CompressionArgs>,
+ #[clap(long)]
+ compression: Option<Compression>,
Review Comment:
Previously, default level would be 1. But now, zstd would be 3 by default.
--
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]