Open the-destro opened 11 months ago
Can you please link to the Python version of the function?
@the-destro
https://pola-rs.github.io/polars/py-polars/html/reference/io.html#delta-lake
Is scan_delta
, read_delta
and DataFrame.write_delta()
these 3 functions ?
Make sure to install deltalake>=0.8.0. Read the documentation
here <https://delta-io.github.io/delta-rs/python/installation.html>
_.
The rust package repository is https://github.com/delta-io/delta-rs
Btw, isn't delta-lake storage pretty much Parquet files? Could you access them directly instead? Writing them would be a bit more complicated though.
Btw, isn't delta-lake storage pretty much Parquet files? Could you access them directly instead? Writing them would be a bit more complicated though.
Yes, that's correct. In our company, we integrate DuckDB, dbt, and Delta Lake with Python for business operations. I'm currently considering replacing some of these components with Elixir.
Python Polars has support for delta lake files already though I can't find the function exposed in the rust package.