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
I see #23 closed but only stream format got supported.
How about files in "arrow file" format, each with multiple record batches inside?
With released version I get a single Table as the result of Tables.partitions(tbl) is a ::Tuple{Arrow.Table}, however the columns there are chunked.
Table
Tables.partitions(tbl)
::Tuple{Arrow.Table}
Can we get partition tables with contiguous column arrays via Tables.partitions?
Tables.partitions
As for workarounds before that's supported, any public API I can use to obtain contiguous column arrays per each record batches?
The text was updated successfully, but these errors were encountered:
Arrow.Table
CuArray
Add Tables.partitions definition for Arrow.Table
66399b2
We had this functionality w/ `Arrow.Stream`, but it's convenient and not that expensive to define it for `Arrow.Table` as well. Fixes #293.
PR up: #443
Sorry, something went wrong.
Add Tables.partitions definition for Arrow.Table (#443)
9385a91
Successfully merging a pull request may close this issue.
I see #23 closed but only stream format got supported.
How about files in "arrow file" format, each with multiple record batches inside?
With released version I get a single
Table
as the result ofTables.partitions(tbl)
is a::Tuple{Arrow.Table}
, however the columns there are chunked.Can we get partition tables with contiguous column arrays via
Tables.partitions
?As for workarounds before that's supported, any public API I can use to obtain contiguous column arrays per each record batches?
The text was updated successfully, but these errors were encountered: