XeCycle commented on issue #47:
URL: https://github.com/apache/arrow-rs/issues/47#issuecomment-913502306


   I'm getting the same (I believe) error on files with many columns (>2k), and 
FWIW, can be work'd-around by a `struct ArcFile(Arc<File>)`.  Just `impl 
parquet::file::reader::ChunkReader for ArcFile`, using `FileExt::read_at` on 
`cfg(unix)` and `FileExt::seek_read` on `cfg(windows)`.
   
   I guess we can modify `parquet::util::io::FileSource` to use `Arc<File>`, 
because we take ownership of provided file objects anyway.


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


Reply via email to