mzabaluev commented on issue #9668: URL: https://github.com/apache/arrow-rs/issues/9668#issuecomment-4204778127
> Note we have also been trying to separate the IO from the decoding in Parquet -- see https://docs.rs/parquet/58.0.0/parquet/arrow/push_decoder/struct.ParquetPushDecoder.html > > Perhaps we could move Avro to that model too rather than implementing the async stuff first There is already a push decoder implementation shared by the sync and async reader implementations. The differences and duplication mainly arise from the I/O model: for the sync reader it's stictly sequential, while the async reader is designed around ranged GET requests provided by `object_store`, with an abstraction to also support generic `AsyncRead + AsyncSeek`. -- 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]
