You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "suxiaogang223 (via GitHub)" <gi...@apache.org> on 2023/03/12 14:21:28 UTC

[GitHub] [arrow-rs] suxiaogang223 commented on issue #3721: Support compressed CSV/TSV files in `parquet-fromcsv`.

suxiaogang223 commented on issue #3721:
URL: https://github.com/apache/arrow-rs/issues/3721#issuecomment-1465212521

   I sadly find that this feature could not be implemented elegantly. I want to be able to stream compressed files, although I can use the `flate2` library to process compressed files like normal files, but arrow-csv reader requires Seek trait. 
   ```Rust
   arrow_csv::reader::ReaderBuilder
   pub fn build<R>(self, reader: R) -> Result<Reader<R>, ArrowError>
   where
       R: Read + Seek,
   ```


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