charlesdong1991 opened a new issue, #545: URL: https://github.com/apache/fluss-rust/issues/545
### Search before asking - [x] I searched in the [issues](https://github.com/apache/fluss-rust/issues) and found nothing similar. ### Description `LogScanner.to_arrow_batch_reader()` currently returns a synchronous `pyarrow.RecordBatchReader` that blocks the calling thread on each `__next__()` call. This might be acceptable for Arrow interop (e.g., feeding into DuckDB, Polars etc), but is not suitable for asyncio-native Python code. So, ideally we should add an async counterpart, e.g., `async for batch in scanner.read_batches()` which yields `RecordBatch` objects without blocking the event loop. ### Willingness to contribute - [x] I'm willing to submit a PR! -- 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]
