iceberg-go
iceberg-go copied to clipboard
Apache Iceberg - Go
### Feature Request / Improvement Hello, we are using Golang to connect to AWS S3 tables and found that iceberg-go does not support writing to partitioned tables. May we ask...
### Feature Request / Improvement now ,i use the catalog of rest to drop table , got error:DropTable operation failed. S3 Tables only supports dropping tables with purge enabled.
### Feature Request / Improvement In e.g. PartitionSpec, we're using int which is sized dependent on the machine, in java a lot of ids are of type `int` which is...
### Apache Iceberg version main (development) ### Please describe the bug 🐞 ## Environment * **iceberg-go**: v0.3.1 * **Catalog**: REST catalog (standard Iceberg REST API) * **Go**: 1.21+ * **OS**:...
### Apache Iceberg version iceberg-go version: v0.3.0 ### Please describe the bug 🐞 [schema.json](https://github.com/user-attachments/files/21958694/schema.json) [parquet_data.zip](https://github.com/user-attachments/files/21958704/parquet_data.zip) I don't understand the bug, so I'll describe what I was doing to run into...
### Description * Add delete files snapshot producer API for marking manifest entry as deleted based on a predicate * Being used as part of https://github.com/apache/iceberg-go/pull/518 * This only helps...
I ran a simple example without having setup my catalog URI correctly. This code snippet: ```go catalog, err := rest.NewCatalog(context.TODO(), "test", "http://localhost:8181") if err != nil { slog.Error("Failed to create...
### Description * Work in progress POC for delete with copy on write * Will try to break down into smaller PRs for review once ready
This PR adds test suite for write operations. Inspired by [TestRewriteFiles](https://github.com/apache/iceberg/blob/main/core/src/test/java/org/apache/iceberg/TestRewriteFiles.java) cc @laskoviymishka