You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is similar to #920 but maybe more specific. Lance (https://github.com/lancedb/lance) has a custom table provider and I was interested in using datafusion-python with this table provider. However, I'm not sure there is an easy solution.
I was hoping, in Lance's python bindings, I could just do something like...
from datafusion import SessionContext
from .lance import register_datafusion
ctx = SessionContext()
register_datafusion(ctx.ctx, "my_tbl", "some_uri")
Unfortunately, this leads to:
TypeError: argument 'ctx': 'SessionContext' object cannot be converted to 'SessionContext'
I suspect the problem is that the SessionContext linked into lance's python module is different from the SessionContext linked into datafusion_python's python module.
Here's a few thoughts off the top of my head. Maybe there is something easier I am missing however.
Add Lance to datafusion-python
A simple, but not ideal, solution is to just add lance as a dependency to datafusion-python. I'm assuming that the datafusion-python project doesn't want 3rd party dependencies however.
Use pyarrow dataset as a "dataset protocol"
The "dataset protocol" never got quite finished but we can kind of use pyarrow datasets as the dataset protocol. This is actually what I've ended up using for the time being. I use register_dataset and LanceDataset already duck types as a pyarrow dataset so this works but it's not as flexible.
Add support via datafusion-federation
I'm not entirely sure this is possible but it seems the datafusion-federation project may have a way of handling abstract table providers over Substrait. datafusion-python could add datafusion-federation as a dependency to allow a register_federated method.
The text was updated successfully, but these errors were encountered:
We will have this supported in datafusion-python 43.0.0! As soon as upstream updates, we will make a few small changes to #921 and get that merged in. Then we will be able to support this. Upstream datafusion 43.0.0 is under release review right now.
This is similar to #920 but maybe more specific. Lance (https://github.com/lancedb/lance) has a custom table provider and I was interested in using datafusion-python with this table provider. However, I'm not sure there is an easy solution.
I was hoping, in Lance's python bindings, I could just do something like...
Then use this in python as:
Unfortunately, this leads to:
I suspect the problem is that the
SessionContext
linked into lance's python module is different from theSessionContext
linked into datafusion_python's python module.Here's a few thoughts off the top of my head. Maybe there is something easier I am missing however.
A simple, but not ideal, solution is to just add lance as a dependency to datafusion-python. I'm assuming that the datafusion-python project doesn't want 3rd party dependencies however.
The "dataset protocol" never got quite finished but we can kind of use pyarrow datasets as the dataset protocol. This is actually what I've ended up using for the time being. I use register_dataset and
LanceDataset
already duck types as a pyarrow dataset so this works but it's not as flexible.I'm not entirely sure this is possible but it seems the datafusion-federation project may have a way of handling abstract table providers over Substrait. datafusion-python could add datafusion-federation as a dependency to allow a
register_federated
method.The text was updated successfully, but these errors were encountered: