mapleFU commented on issue #6292:
URL: https://github.com/apache/arrow-rs/issues/6292#issuecomment-3218726739
Currently I use straitegy like this
```rust
if writer.in_progress_size() > max_row_group_size {
info!("Flush row group with size {}",
writer.in_progress_size());
writer.flush()?;
}
```
--
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]