Skip to content

Apache Iceberg Rust 0.10.0 Release

The Apache Iceberg community is pleased to announce version 0.10.0 of iceberg-rust.

This release covers development work from early March through early July 2026 and is the result of merging 254 PRs from 40 contributors. See the changelog for the complete list of changes.

iceberg-rust is a native Rust implementation of the Apache Iceberg specification, providing high-performance libraries for reading, writing, and managing Iceberg tables in Rust applications and through Python bindings (pyiceberg-core).

Release Highlights🔗

There have been plenty of contributions across the iceberg-rust library; here's a highlight of a few.

Schema Evolution🔗

This release adds the update_schema action, enabling column addition and removal.

Snapshot Expiration🔗

A new ExpireSnapshotsAction (#2591, #2664, #2667) provides a high-level API for expiring old snapshots, respecting history.expire.* table properties and cleaning up associated statistics file metadata.

Configurable Tokio runtime🔗

A custom tokio Runtime can now be provided when initializing catalogs. This allows for injecting a customized Tokio runtime into the session. For example, it is now possible to configure the thread stack size or maximum number of threads programatically.

Writer Improvements🔗

  • Content-defined chunking (#2375, #2561): content-defined chunking table properties are now respected for optimizing Parquet file boundaries
  • Purge table support: Catalogs now offer a purge_table method, deleting both metadata and data files

Enhanced DataFusion Integration🔗

Reader and Scan Improvements🔗

Table Encryption (Foundational)🔗

Significant groundwork has been laid toward Iceberg's table encryption specification. Writes to encrypted tables are explicitly blocked until the full write path is complete. End-to-end read and write support for encrypted tables is expected in a future release. See the table encryption RFC for the full design.

Storage Improvements🔗

New Storage Backend - HuggingFace Hub🔗

The HuggingFace Hub storage backend was introduced, enabling direct access to Iceberg tables hosted on HuggingFace datasets.

Other improvements🔗

Bug Fixes🔗

Notable correctness fixes or other validation improvements in this release:

Breaking Changes🔗

Here's a few notable breaking changes. Given iceberg-rust has not yet reached version 1.x, breaking changes are adopted for a better API long-term.

  • Purge table: Added purge_table to the Catalog trait; some catalog implementations moved their data-deletion logic from drop_table to purge_table
  • Compression codec enum: Codec enum variant changes introducing Snappy, and including compression levels in Zstd and Gzip.
  • Custom Runtime in Catalog: Added with_runtime to the CatalogBuilder trait
  • DefaultLocationGenerator: new() now borrows TableMetadata instead of taking ownership
  • MSRV: Bumped to Rust 1.94

Dependency Updates🔗

This release included a number of dependency updates, including upgrading to Apache DataFusion 53 and Apache Arrow 58. For a full list of dependency versions, the best resources to review are the Cargo manifests.

Infrastructure Improvements🔗

What's Next🔗

Work is already underway on several features for upcoming releases:

  • Table encryption: With the foundational encryption stack landed, the community is working toward end-to-end encrypted reads and writes
  • Transaction layer improvement: We are working on adding the snapshot validation mechanism to detect write conflicts, laying the groundwork for future support of RewriteDataFiles, RowDelta, and Overwrite commit operations.

Getting Involved🔗

The iceberg-rust project welcomes contributions. We use GitHub issues for tracking work and the Apache Iceberg Community Slack for discussions.

The easiest way to get started is to:

  1. Try iceberg-rust with your workloads and report any issues you encounter
  2. Review the contributor guide
  3. Look for good first issues

Code review is also a very welcome contribution - please provide feedback on pull requests where you feel comfortable to do so!

For more information, visit the iceberg-rust repository.