-
Notifications
You must be signed in to change notification settings - Fork 547
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Environment
Delta-rs version: 0.18.1
Binding: Python
Environment:
- Cloud provider: Azure
- OS: WIndows
- Other:
Bug
What happened:
After 0.18.1 was released it fixes the inital issue with apache/arrow-rs#2301 for me but instead I started hitting this. The Z-order operations start and I can see that there is usage of network, CPU and memory but after 30 secs-ish I'm hit with the following. The Rust logs doens't show anything strange:
metrics = self.table._table.z_order_optimize(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_internal.DeltaError: Failed to parse parquet: Parquet error: Z-order failed while scanning data: ParquetError(General("AsyncChunkReader::get_bytes error: Generic MicrosoftAzure error: error decoding response body"))
What you expected to happen:
That the Z-order completes.
How to reproduce it:
import os
os.environ["RUST_LOG"]="debug"
from deltalake import DeltaTable
blob_path = "az://<redacted path>"
storage_options = {"AZURE_STORAGE_ACCOUNT_NAME": "<redacted sa>", "AZURE_CONTAINER_NAME":'<redacted container>', 'use_azure_cli': 'true'}
dt = DeltaTable(blob_path, storage_options=storage_options)
dt.optimize.z_order(["StatusDateTime"])
More details:
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working