Skip to content

Commit

Permalink
[DOCS] add Delta writer functionality (#2372)
Browse files Browse the repository at this point in the history
this adds Delta writer functionality to the integration page
  • Loading branch information
avriiil authored Jun 13, 2024
1 parent 1b2973f commit f99fcd8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/source/user_guide/integrations/delta_lake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,17 @@ Filters on non-partition columns will still benefit from automatic file pruning
df3 = df.where(df["num"] < 2)
df3.show()
Write to Delta Lake
*******************

You can use `write_deltalake` to write a Daft DataFrame to a Delta table:

.. code:: python
df.write_deltalake("tmp/daft-table", mode="overwrite")
Daft supports multiple write modes. See the API docs for :func:`daft.DataFrame.write_deltalake` for more details.

Type System
***********

Expand Down

0 comments on commit f99fcd8

Please sign in to comment.