We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, Thank you so much for this library!
I am considering deserializing avro to arrow, and I am looking for an efficient way of doing it.
In other row-based formats (CSV, JSON), we have been doing the following:
Read+Seek -> Vec<Row>
AsyncRead+AsyncSeek -> Future<Vec<Row>>
Vec<Row> -> Vec<Columns>
&mut [Row]
Vec<Row>
Could someone offer some guide for doing this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey, Thank you so much for this library!
I am considering deserializing avro to arrow, and I am looking for an efficient way of doing it.
In other row-based formats (CSV, JSON), we have been doing the following:
Read+Seek -> Vec<Row>
orAsyncRead+AsyncSeek -> Future<Vec<Row>>
) from "deserializing" (Vec<Row> -> Vec<Columns>
)&mut [Row]
, so that we can use a reuse a singleVec<Row>
for multiple "batches of rows".Could someone offer some guide for doing this?
The text was updated successfully, but these errors were encountered: