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 2020/09/30 18:47:26 UTC

[GitHub] [arrow] alamb commented on pull request #8300: ARROW-10135: [Rust] [Parquet] Refactor file module to help adding sources

alamb commented on pull request #8300:
URL: https://github.com/apache/arrow/pull/8300#issuecomment-701575470


   from https://issues.apache.org/jira/browse/ARROW-10135, it seems like your goal is to support reading parquet files from sources other than files. 
   
   I wonder if you have tried implementing the `ParquetReader` trait for another data source?
   
   Then you can create a file reader from that other source like:
   ```
   let source = ThingThatImplementsParquetReader::new();
   let file_reader = SerializedFileReader::new(source);
   ...
   ```


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

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