-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
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
Python API to get dataframes out of an RRD #6811
Comments
Sounds like part of this should be an alternative crate to This |
@teh-cmc: does this issue have enough specificity to implement these queries or do you need further details on the exact semantics of the queries? |
…upport (#7322) In preparation of: - #6811 We want to be able to use the `arrow-rs` pyarrow support to more easily move data bidirectionally between rust and python. This required updating our `pyo3` version, which required migrating some functions to use the new `Bound<>` APIs. This allowed us to get rid of the old unsafe calls, though adds an extra step of going pyarrow -> arrow-rs -> arrow.
The user should be able to open an existing RRD.
Using the open RRD object, we should expose 4 new APIs:
The inputs to the APIs that take a list of columns likely either use ColumnDescriptors returned from the Schema API, or an EntityPath expression that can be indirectly evaluated to a list of columns.
When this is done we should have an easy piece of example code that opens and rrd and constructrs a dataframe that is fed into pandas or polars.
Observed API issues:
Querying for an image is weird:
The text was updated successfully, but these errors were encountered: