Closed clarkzinzow closed 4 months ago
Are we planning this supports sometimes next 3 months?
@sujiplr yes we are, once we do our integration with delta-kernel-rs.
cc: @kevinzwang
Hi @sujiplr! Glad to hear that there's demand for these features. We currently have support for overwrite and append with the DataFrame.write_deltalake
method, and upserts and deletes are part of our delta lake roadmap (#2457) and we hope to support them soon
In the meantime, if your data can fit on one machine, you can call DataFrame.to_arrow
to convert your dataframe into a PyArrow table, and then use it with the deltalake
python library
I think I'll also close this issue since each of these features are either done or being tracked by another issue already
In addition to creating new Delta Lake tables, we should add support for updating existing Delta Lake tables. We should support overwrites, appends, upserts, and deletes.