iceberg-python icon indicating copy to clipboard operation
iceberg-python copied to clipboard

Apache PyIceberg

Results 402 iceberg-python issues
Sort by recently updated
recently updated
newest added

### Apache Iceberg version 0.7.0 (latest release) ### Please describe the bug 🐞 [Currently](https://github.com/apache/iceberg-python/blob/8aeab4951080fa196c0d29c72cba1cbba824ffc4/pyiceberg/catalog/rest.py#L808), we return True when the status code is 200 or 204, and False for all other...

good first issue

Added support for dynamic overwrite leveraging delete and fast-append([counterpart in Iceberg Spark](https://iceberg.apache.org/docs/1.5.0/spark-writes/#dynamic-overwrite)). Several follow-ups: - to support current spec with transformed fields. Should be easy but due to the number...

### Apache Iceberg version None ### Please describe the bug 🐞 According to the Iceberg documentation on Column Projection: ``` A name may contain . but this refers to a...

### Apache Iceberg version main (development) ### Please describe the bug 🐞 Hi community, I found this write option in the Python documentation, `write.parquet.row-group-limit`, which is supposed to control the...

### Feature Request / Improvement To set up a configuration to ADLS, we use now `adlfs.*` prefixed properties. This is refers to the implementation, and we want to use `adls`....

good first issue

### Feature Request / Improvement The idea is to create an integration test suite that tests all catalog interactions against the REST Catalog Image [that we're already using in our...

good first issue

### Apache Iceberg version 0.7.0 (latest release) ### Please describe the bug 🐞 When running PyIceberg in Windows, and using local file system as warehouse location, we cannot specify the...

### Feature Request / Improvement currently using this in a an environment with limited RAM ``` df=final.arrow() catalog , table_location = connect_catalog(storage) catalog.create_table_if_not_exists(db+".scada",schema=df.schema,location= table_location+f'/{db}/scada' ) catalog.load_table(db+".scada").append(df) ``` I get sometimes...