forked from delta-io/delta-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(python): expose
convert_to_deltalake
(delta-io#1842)
Exposes added `convert to delta` functionality by @junjunjd to Python API. - closes delta-io#1767 --------- Co-authored-by: Robert Pack <[email protected]>
- Loading branch information
1 parent
57565b5
commit 49a298b
Showing
7 changed files
with
254 additions
and
13 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import pathlib | ||
|
||
import pyarrow as pa | ||
import pyarrow.dataset as ds | ||
import pytest | ||
|
||
from deltalake import convert_to_deltalake | ||
from deltalake.exceptions import DeltaError | ||
from deltalake.table import DeltaTable | ||
|
||
|
||
def test_local_convert_to_delta(tmp_path: pathlib.Path, sample_data: pa.Table): | ||
ds.write_dataset( | ||
sample_data, | ||
tmp_path, | ||
format="parquet", | ||
existing_data_behavior="overwrite_or_ignore", | ||
) | ||
|
||
name = "converted_table" | ||
description = "parquet table converted to delta table with delta-rs" | ||
convert_to_deltalake( | ||
tmp_path, | ||
name=name, | ||
description=description, | ||
configuration={"delta.AppendOnly": "True"}, | ||
) | ||
|
||
dt = DeltaTable(tmp_path) | ||
|
||
assert dt.version() == 0 | ||
assert dt.files() == ["part-0.parquet"] | ||
assert dt.metadata().name == name | ||
assert dt.metadata().description == description | ||
assert dt.metadata().configuration == {"delta.AppendOnly": "True"} | ||
|
||
|
||
def test_convert_delta_write_modes(tmp_path: pathlib.Path, sample_data: pa.Table): | ||
ds.write_dataset( | ||
sample_data, | ||
tmp_path, | ||
format="parquet", | ||
existing_data_behavior="overwrite_or_ignore", | ||
) | ||
|
||
convert_to_deltalake( | ||
tmp_path, | ||
) | ||
|
||
with pytest.raises(DeltaError): | ||
convert_to_deltalake( | ||
tmp_path, | ||
) | ||
|
||
convert_to_deltalake(tmp_path, mode="ignore") | ||
|
||
|
||
def test_convert_delta_with_partitioning(tmp_path: pathlib.Path, sample_data: pa.Table): | ||
ds.write_dataset( | ||
sample_data, | ||
tmp_path, | ||
format="parquet", | ||
existing_data_behavior="overwrite_or_ignore", | ||
partitioning=["utf8"], | ||
partitioning_flavor="hive", | ||
) | ||
|
||
with pytest.raises( | ||
DeltaError, | ||
match="Generic error: The schema of partition columns must be provided to convert a Parquet table to a Delta table", | ||
): | ||
convert_to_deltalake( | ||
tmp_path, | ||
) | ||
with pytest.raises( | ||
ValueError, match="Partition strategy has to be provided with partition_by" | ||
): | ||
convert_to_deltalake( | ||
tmp_path, | ||
partition_by=pa.schema([pa.field("utf8", pa.string())]), | ||
) | ||
|
||
with pytest.raises( | ||
ValueError, | ||
match="Currently only `hive` partition strategy is supported to be converted.", | ||
): | ||
convert_to_deltalake( | ||
tmp_path, | ||
partition_by=pa.schema([pa.field("utf8", pa.string())]), | ||
partition_strategy="directory", | ||
) | ||
|
||
convert_to_deltalake( | ||
tmp_path, | ||
partition_by=pa.schema([pa.field("utf8", pa.string())]), | ||
partition_strategy="hive", | ||
) |