iceberg-python
iceberg-python copied to clipboard
Apache PyIceberg
Creates ManageSnapshots() rollback and set snapshot APIs. Relevant issue - #737
### Feature Request / Improvement Although not in the official spec, `version-hint.txt` can be useful to read an iceberg table without a catalog. This is useful when considering an iceberg...
### Apache Iceberg version None ### Please describe the bug 🐞 While working on a Python REST server implementation (https://github.com/kevinjqliu/iceberg-rest-catalog), I noticed a few Pyiceberg bugs while integrating with PySpark....
Fixes: https://github.com/apache/iceberg-python/issues/306
### Question While using the pyiceberg got some issues/questions that blocked me, mainly regarding an internal server error 500 after the execution of a simple "create_table" function. Since I'm pretty...
### Apache Iceberg version main (development) ### Please describe the bug 🐞 According to the [parquet data type mappings spec](https://iceberg.apache.org/spec/#parquet). `DecimalType` should map to `INT32` when `precision
### Feature Request / Improvement Starting an issue to gather feedback on providing nightly builds for `pyiceberg`. Resolves #734. Thanks @syun64 for the pointers and feedback. ## PyIceberg Release Process...
### Question I have been able to access a S3 bucket with pyIceberg using SqlCatalog successfully with catalog = SqlCatalog( "default", **{ "uri": f"sqlite:///{warehouse_path}/pyiceberg_catalog.db", "warehouse": "s3://myicebergbkt/test", "s3.access-key-id": "myid", "s3.secret-access-key": "mykey",...
### Feature Request / Improvement Let's investigate the level of abstraction on the write path. Currently, we are doing schema-compatible checks, schema coercion, bin-packing, transformation, etc at different levels of...
### Feature Request / Improvement I was trying to set up mkdocs on this repo and found the existing setup a little unintuitive -- in most cases I use mkdocs...