⚠️ DEPRECATED: This crate is no longer maintained. Please use the official Apache Iceberg Rust implementation instead.
This repository previously contained a Rust implementation of the Apache Iceberg table format.
We recommend migrating to the official crate:
- 📦 Crate:
iceberg - 🔗 Repository: apache/iceberg-rust
The official implementation offers comprehensive features, including:
- Table operations: create, read, update, delete
- Schema evolution and hidden partitioning
- Time travel and snapshot isolation
- View and materialized view support
- Multiple catalog implementations: REST, AWS Glue, File-based
- Integration with Apache Arrow and DataFusion
For more details, visit the official documentation.
The Iceberg is an open table format for analytic datasets. It is very convenient to access the Iceberg table information to do things like view schema details, track changes, and view snapshots. This project is a Rust implementation of the Iceberg spec.
use iceberg_rs::model::table::TableMetadataV2;
fn main() {
let data = r#"
{
"format-version" : 2,
"table-uuid": "fb072c92-a02b-11e9-ae9c-1bb7bc9eca94",
"location": "s3://b/wh/data.db/table",
"last-sequence-number" : 1,
"last-updated-ms": 1515100955770,
"last-column-id": 1,
"schemas": [
{
"schema-id" : 1,
"type" : "struct",
"fields" :[
{
"id": 1,
"name": "struct_name",
"required": true,
"field_type": "fixed[1]"
}
]
}
],
"current-schema-id" : 1,
"partition-specs": [
{
"spec-id": 1,
"fields": [
{
"source-id": 4,
"field-id": 1000,
"name": "ts_day",
"transform": "day"
}
]
}
],
"default-spec-id": 1,
"last-partition-id": 1,
"properties": {
"commit.retry.num-retries": "1"
},
"metadata-log": [
{
"metadata-file": "s3://bucket/.../v1.json",
"timestamp-ms": 1515100
}
],
"sort-orders": [],
"default-sort-order-id": 0
}
"#;
let metadata = serde_json::from_str::<TableMetadataV2>(&data).unwrap();
}Currently supported:
- Parsing table metadata v2.
Coming soon:
- Manifest files.
- Manifest lists.
- v1 table metadata support.
- Validation.
Diagram showing the main nouns of the Iceberg model.
erDiagram
TABLE ||--o{ PARTITION_SPEC : partitions
PARTITION_SPEC ||--o{ PARTITION_FIELD : fields
PARTITION_FIELD ||--|| TRANSFORM : transformed
TABLE ||--o{ SNAPSHOT : snapshots
TABLE ||--|{ SCHEMA : schemas
SCHEMA ||--o{ STRUCT_FIELD : fields
TABLE ||--o{ SORT_ORDER : fields
SORT_ORDER ||--o{ SORT_FIELD : fields
If you’d like to contribute, please fork the repository and use a feature branch. We warmly welcomed pull requests.
Please validate all submission with make validate.
Unless you explicitly state otherwise, any contribution intentionally submitted to include in Iceberg-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, with no additional terms or conditions.