-
Notifications
You must be signed in to change notification settings - Fork 608
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
feat(datafusion): initial implementation for Arrow Datafusion backend #2918
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to not create this backend in a separate repo (e.g. github.com/ibis-project/ibis-datafusion
). I think it'll keep things simpler, and will allow to release ibis-datafusion more often than the ibis core if needed. It'll also help review this, since the changes required to Ibis itself, and the new backend will be in different PRs.
Steps required before proceeding with this PR:
|
8e0de5f
to
afc6f22
Compare
@cpcloud could you please give it a review? I'd like to finalize it and merge as an experimental backend, then create follow-up issues to add support for missing operations (windows, joins etc.). |
@kszucs When you have a chance can you rebase and resolve the conflicts? |
f07a429
to
2fb4074
Compare
@kszucs rebase one more time and i'll merge this 🙏🏻 |
@jreback Can you approve? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a few questions
I'm going to merge this today, as there are no remaining actionable review items. |
no objection (but follow ups as indicated) |
@jreback Thanks, can you approve? |
Basic things are working, we need to add more operations (depending on the datafusion support) and additional backend specific tests. resolves ibis-project#2627
🎉 This PR is included in version 2.1.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
The main purpose if this PR is to share the work on the datafusion backend. Basic things are working, we need to add more operations (depending on the datafusion support) and additional backend specific tests.
The CI hasn't been configured yet, since it requires two PRs to be merged:
The parametrized testing suite has the following state:
cc @cpcloud