You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/02/05 11:28:18 UTC

[GitHub] [arrow-rs] alamb commented on issue #1269: Provide an `async` ParquetWriter for arrow

alamb commented on issue #1269:
URL: https://github.com/apache/arrow-rs/issues/1269#issuecomment-1030604503


   Thanks @xudong963  - I personally suggest starting with the API design. As in write an example program showing how you would use the feature. Something like the following (sorting out what types to use for streams, etc):
   
   ```rust
   async fn main() { 
     // get output stream
     let writer = AsyncParquet::new(...);
     // write batches to the writer somehow (not sure how??)
     for batch in batches {
       ....
     }
   }
   ```
   
      


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org