EmilyMatt commented on code in PR #8930: URL: https://github.com/apache/arrow-rs/pull/8930#discussion_r2730711087
########## arrow-avro/src/lib.rs: ########## @@ -123,16 +123,56 @@ //! # Ok(()) } //! ``` //! +//! ## `async` Reading (`async` feature) +//! +//! The [`reader`] module provides async APIs for reading Avro files when the `async` +//! feature is enabled. +//! +//! [`AsyncAvroFileReader`] implements `Stream<Item = Result<RecordBatch, ArrowError>>`, +//! allowing efficient async streaming of record batches. When the `object_store` feature +//! is enabled, [`AvroObjectReader`] provides integration with object storage services +//! such as S3 via the [object_store] crate. +//! +//! ```ignore Review Comment: I don't know how to do it without failing the tests, because all the code here is featuregated, and the doctests also runs without features enabled -- 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]
