alamb commented on code in PR #1719: URL: https://github.com/apache/arrow-rs/pull/1719#discussion_r879320089
########## parquet/src/file/mod.rs: ########## @@ -48,12 +48,14 @@ //! let props = Arc::new(WriterProperties::builder().build()); //! let file = fs::File::create(&path).unwrap(); //! let mut writer = SerializedFileWriter::new(file, schema, props).unwrap(); -//! let mut row_group_writer = writer.next_row_group().unwrap(); -//! while let Some(mut col_writer) = row_group_writer.next_column().unwrap() { -//! // ... write values to a column writer -//! row_group_writer.close_column(col_writer).unwrap(); +//! { Review Comment: Ah, yes, I also find this very confusing -- I think that split was part of the original implementation from @sunchao Would be possible to create a `ParallelizedFileWriter` that used multiple threads and buffers internally to write files out with greater concurrency? -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org