paimon-rust
paimon-rust copied to clipboard
reader: Allow reading paimon data into arrow format.
Arrow format has been supported since Paimon 0.9. Do we need to support it in Paimon Rust 0.1.0?
This ticket is meant to allow to read the data file through the arrow library
I have read the relevant code (ArrowBatchReader), which uses the InternalRowSequencer class, which references some methods of the BinaryRowWriter and involves operations on the underlying memory. I plan to implement it in Rust using arena modes like bumpalo.
Do you think this is a good idea? @Aitozi