-
Notifications
You must be signed in to change notification settings - Fork 440
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
DataFusion write to delta via Python #2422
Comments
Let's make sure to get the docs page updated too when/if this gets completed: https://delta-io.github.io/delta-rs/integrations/delta-lake-datafusion/ |
We already use datafusion in delta-rs, so not sure what you mean? |
@ion-elgreco - any chance we can expose the syntax to write to a Delta tables with DataFusion in the docs, so it's easy for me to learn how to do it? |
@MrPowers what docs are we talking about here? Because we use datafusion on the rust side, but this is not documented well. All of the writing is just dispatched to rust from pyuthon |
I think it didn't support directly. Based Article 1, We need convert to pyarrow before we read from datafusion. from datafusion import SessionContext ctx = SessionContext() |
Hello
I would like to write into Delta lake via DataFusion just like spark.
Future support
Append, overwrite, Merge into
The text was updated successfully, but these errors were encountered: