| Crates.io | iceberg-catalog-s3tables |
| lib.rs | iceberg-catalog-s3tables |
| version | 0.8.0 |
| created_at | 2026-01-19 07:06:25.400529+00 |
| updated_at | 2026-01-19 07:06:25.400529+00 |
| description | Apache Iceberg Rust S3Tables Catalog |
| homepage | https://rust.iceberg.apache.org/ |
| repository | https://github.com/apache/iceberg-rust |
| max_upload_size | |
| id | 2053903 |
| size | 179,721 |
Official Native Rust implementation of the Apache Iceberg S3Tables catalog.
use std::collections::HashMap;
use iceberg::CatalogBuilder;
use iceberg_catalog_s3tables::{
S3TABLES_CATALOG_PROP_ENDPOINT_URL, S3TABLES_CATALOG_PROP_TABLE_BUCKET_ARN,
S3TablesCatalogBuilder,
};
#[tokio::main]
async fn main() {
let catalog = S3TablesCatalogBuilder::default()
.with_endpoint_url("http://localhost:4566")
.load(
"s3tables",
HashMap::from([(
S3TABLES_CATALOG_PROP_TABLE_BUCKET_ARN.to_string(),
"arn:aws:s3tables:us-east-1:123456789012:bucket/my-bucket".to_string(),
)]),
)
.await
.unwrap();
// use `catalog` as any Iceberg Catalog
}
See the API documentation for the full API surface.