bonsairobo commented on issue #7129:
URL: https://github.com/apache/arrow-rs/issues/7129#issuecomment-2657612506

   > ParquetRecordBatchStreamBuilder reads at most one row group at a time.
   
   Ahh I see. This fixes it:
   
   ```rust
       let mut writer = AsyncArrowWriter::try_new(
           file_writer,
           schema,
           Some(
               WriterProperties::builder()
                   .set_max_row_group_size(usize::MAX)
                   .build(),
           ),
       )
       .unwrap();
   ```


-- 
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]

Reply via email to