-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: dagster-deltalake-polars LazyFrame support + expose all writer …
…params (#19343) ## Summary & Motivation Added LazyFrame support in dagster-deltalake-polars integration to allow for lazy queries which will do predicate and projection pushdown to the storage layer. ## How I Tested These Changes Extended the tests and parametrized them.
- Loading branch information
1 parent
102dc7b
commit 29aca59
Showing
12 changed files
with
524 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 47 additions & 8 deletions
55
...raries/dagster-deltalake-polars/dagster_deltalake_polars/deltalake_polars_type_handler.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
...s/dagster-deltalake-polars/dagster_deltalake_polars_tests/test_type_handler_save_modes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
import os | ||
|
||
import polars as pl | ||
import pytest | ||
from dagster import ( | ||
Out, | ||
graph, | ||
op, | ||
) | ||
from dagster_deltalake import LocalConfig | ||
from dagster_deltalake.io_manager import WriteMode | ||
from dagster_deltalake_polars import DeltaLakePolarsIOManager | ||
from deltalake import DeltaTable | ||
|
||
|
||
@pytest.fixture | ||
def io_manager(tmp_path) -> DeltaLakePolarsIOManager: | ||
return DeltaLakePolarsIOManager( | ||
root_uri=str(tmp_path), storage_options=LocalConfig(), mode=WriteMode.overwrite | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def io_manager_append(tmp_path) -> DeltaLakePolarsIOManager: | ||
return DeltaLakePolarsIOManager( | ||
root_uri=str(tmp_path), storage_options=LocalConfig(), mode=WriteMode.append | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def io_manager_ignore(tmp_path) -> DeltaLakePolarsIOManager: | ||
return DeltaLakePolarsIOManager( | ||
root_uri=str(tmp_path), storage_options=LocalConfig(), mode=WriteMode.ignore | ||
) | ||
|
||
|
||
@op(out=Out(metadata={"schema": "a_df"})) | ||
def a_df() -> pl.DataFrame: | ||
return pl.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) | ||
|
||
|
||
@op(out=Out(metadata={"schema": "add_one"})) | ||
def add_one(df: pl.DataFrame): | ||
return df + 1 | ||
|
||
|
||
@graph | ||
def add_one_to_dataframe(): | ||
add_one(a_df()) | ||
|
||
|
||
@graph | ||
def just_a_df(): | ||
a_df() | ||
|
||
|
||
def test_deltalake_io_manager_with_ops_appended(tmp_path, io_manager_append): | ||
resource_defs = {"io_manager": io_manager_append} | ||
|
||
job = just_a_df.to_job(resource_defs=resource_defs) | ||
|
||
# run the job twice to ensure tables get appended | ||
expected_result1 = [1, 2, 3] | ||
|
||
for _ in range(2): | ||
res = job.execute_in_process() | ||
|
||
assert res.success | ||
|
||
dt = DeltaTable(os.path.join(tmp_path, "a_df/result")) | ||
out_df = dt.to_pyarrow_table() | ||
assert out_df["a"].to_pylist() == expected_result1 | ||
|
||
expected_result1.extend(expected_result1) | ||
|
||
|
||
def test_deltalake_io_manager_with_ops_ignored(tmp_path, io_manager_ignore): | ||
resource_defs = {"io_manager": io_manager_ignore} | ||
|
||
job = just_a_df.to_job(resource_defs=resource_defs) | ||
|
||
# run the job 5 times to ensure tables gets ignored on each write | ||
for _ in range(5): | ||
res = job.execute_in_process() | ||
|
||
assert res.success | ||
|
||
dt = DeltaTable(os.path.join(tmp_path, "a_df/result")) | ||
out_df = dt.to_pyarrow_table() | ||
assert out_df["a"].to_pylist() == [1, 2, 3] | ||
|
||
assert dt.version() == 0 | ||
|
||
|
||
@op(out=Out(metadata={"schema": "a_df", "mode": "append"})) | ||
def a_df_custom() -> pl.DataFrame: | ||
return pl.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) | ||
|
||
|
||
@graph | ||
def add_one_to_dataframe_custom(): | ||
add_one(a_df_custom()) | ||
|
||
|
||
def test_deltalake_io_manager_with_ops_mode_overriden(tmp_path, io_manager): | ||
resource_defs = {"io_manager": io_manager} | ||
|
||
job = add_one_to_dataframe_custom.to_job(resource_defs=resource_defs) | ||
|
||
# run the job twice to ensure that tables get properly deleted | ||
|
||
a_df_result = [1, 2, 3] | ||
add_one_result = [2, 3, 4] | ||
|
||
for _ in range(2): | ||
res = job.execute_in_process() | ||
|
||
assert res.success | ||
|
||
dt = DeltaTable(os.path.join(tmp_path, "a_df/result")) | ||
out_df = dt.to_pyarrow_table() | ||
assert out_df["a"].to_pylist() == a_df_result | ||
|
||
dt = DeltaTable(os.path.join(tmp_path, "add_one/result")) | ||
out_df = dt.to_pyarrow_table() | ||
assert out_df["a"].to_pylist() == add_one_result | ||
|
||
a_df_result.extend(a_df_result) | ||
add_one_result.extend(add_one_result) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.