iceberg-python
iceberg-python copied to clipboard
Apache PyIceberg
# Rationale for this change nightly pypi silently fails (#2678) This PR adds notification when github workflow fails Sent to `[email protected]` ## Are these changes tested? ## Are there any...
### Apache Iceberg version 0.10.0 (latest release) ### Please describe the bug 🐞 My python version is 3.12. When I use pyiceberg to read a dataset table created Dremio using...
### Question Understand pyiceberg supports concurrent write operation based on Iceberg OCC specification. How does this translate to concurrent schema modification? In my case, there are multiple processes that can...
### Apache Iceberg version None ### Please describe the bug 🐞 https://github.com/apache/iceberg-python/blob/main/.github/workflows/check-md-link.yml > The action tcort/github-action-markdown-link-check@v1 is not allowed in apache/iceberg-python because all actions must be from a repository owned...
Inspired by #2601 # Rationale for this change Adds `pretty-format-toml` for formatting toml files ## Are these changes tested? I ran `make lint` ## Are there any user-facing changes?
### Question Hi Iceberg team, I was wondering how to best use the [rewrite_table_path](https://iceberg.apache.org/docs/latest/spark-procedures/#rewrite_table_path) procedure on a Backup. My situation is the following: * I have an S3 bucket on...
### Apache Iceberg version 0.10.0 (latest release) ### Please describe the bug 🐞 Starting from version 20, Pyarrow has support for Azure filesystems. ABFS URIs have this [format](https://learn.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-introduction-abfs-uri): abfs[s]://@.dfs.core.windows.net// But...
### Feature Request / Improvement I came across this corner case when trying to construct filters additively. `pl.lit(True)` was used as a base expression to which other filters were ANDed....
### Feature Request / Improvement I recently discovered that full stats collection (i.e. `lower_bounds`/`upper_bounds`) is explicitly [disabled](https://github.com/apache/iceberg-python/blob/7acdb12f5239594e593f2822de75c7a4c669f52f/pyiceberg/io/pyarrow.py#L2220-L2223) in PyIceberg for nested (i.e. struct child) fields. This change was made in...
### Question I use the following code to load the catalog 'bi_31', but it always ends up loading the 'hive' catalog. Does it only support loading the default catalog? ````...