Fokko Driesprong
Fokko Driesprong
**Is your feature request related to a problem? Please describe.** For the current Iceberg implementation, we read more metadata than necessary. The query planning phase of an Iceberg query starts...
# Iceberg-rust 0.3.0 The main objective of 0.3.0 is to have a working read path (non-exhaustive list :) - [x] **Scan API** Added by @liurenjie1024 in https://github.com/apache/iceberg-rust/pull/129 - [x] **Predicate...
This is an old bug from Java. Where the Snapshot was set to -1 instead of `None`: https://github.com/apache/iceberg-rust/blob/aba620900e99423bbd3fed969618e67e58a03a7b/crates/iceberg/src/spec/table_metadata.rs#L44 From Java 1.5 and later this is fixed. For older version of...
Looking at the manifest list, we see the following names: ```json { "name" : "added_data_files_count", "type" : "int" }, { "name" : "existing_data_files_count", "type" : "int" }, { "name" :...
Looks like the `field-id` is missing in the Avro metadata generated by iceberg-rust. This should conform the spec: https://iceberg.apache.org/spec/#avro ``` avro-tools getschema snap-0-1-a0c0a37d-6828-47c6-80e8-64b0a013fe44.avro 24/04/25 14:58:05 WARN util.NativeCodeLoader: Unable to load...
Hi everyone, It might be premature, but when releasing we need the two guides: - `how-to-release.md` - `verify-release.md` Just to put it out here, and maybe someone is interested in...
### Feature Request / Improvement Right now we hardcoded that we write to the main branch all the time, would be great to make this configurable.
### Feature Request / Improvement Migrated from https://github.com/apache/iceberg/issues/7598: Hi, I've been looking at seeing what we can do to make PyArrow Datasets extensible for various table formats and making them...
This is done through the Iceberg metadata, resulting in efficient deletes if the data is partitioned correctly
### Feature Request / Improvement In Iceberg Spark there are metadata tables that provide information around the table: https://iceberg.apache.org/docs/latest/spark-queries/ The most important tables are: - [ ] *Files* assigned to...