Skip to content

Commit

Permalink
docs: use dagster deltalake polars library (delta-io#2263)
Browse files Browse the repository at this point in the history
use `dagster-deltalake-polars ` instead of `dagster-polars`
  • Loading branch information
avriiil authored Mar 8, 2024
1 parent 2f53872 commit 16fd95f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/integrations/delta-lake-dagster.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,18 +217,18 @@ To read and write data to Delta Lake using pandas, use the `DeltaLakePolarsIOMan
You will need to install it using:

```
pip install dagster-polars
pip install dagster-deltalake-polars
```

In your `Definitions` object, change the `io_manager` to `DeltaLakePolarsIOManager()`:

```
from dagster_polars import PolarsDeltaIOManager
from dagster_polars import DeltaLakePolarsIOManager
defs = Definitions(
assets=all_assets,
resources={
"io_manager": PolarsDeltaIOManager(
"io_manager": DeltaLakePolarsIOManager(
root_uri="path/to/deltalake",
storage_options=LocalConfig(),
schema="dagster_deltalake",
Expand Down

0 comments on commit 16fd95f

Please sign in to comment.