Apache XTable
A zero-copy metadata translator (Apache incubating, formerly OneTable) that converts between Iceberg, Delta Lake, and Hudi metadata without copying data files.
Summary
A zero-copy metadata translator (Apache incubating, formerly OneTable) that converts between Iceberg, Delta Lake, and Hudi metadata without copying data files.
XTable sits between table formats and query engines, enabling a "write once, read from any format" pattern. Ingest data in Hudi (optimized for CDC) and serve it to Trino and Snowflake via Iceberg metadata — all without data duplication.
- Zero-copy means no data file duplication, but metadata translation still has a cost. Large tables with millions of files can have non-trivial translation overhead.
- Still in Apache incubation. Documentation and build tooling are rough. Production use requires careful testing.
enablesApache Iceberg, Delta Lake, Apache Hudi — cross-format metadata translationsolvesVendor Lock-In — prevents table format lock-incompetes_withDelta UniForm — different approaches to interoperability
Definition
A metadata translation layer (Apache incubating, formerly OneTable) that performs zero-copy conversion between Apache Iceberg, Delta Lake, and Apache Hudi metadata. No data files are copied or modified — only metadata is translated.
Organizations ingest data in one table format (e.g., Hudi for low-latency CDC) but need to serve it to engines that prefer another format (e.g., Iceberg for Trino/Snowflake). XTable eliminates the need to maintain multiple copies of the same data in different formats.
Cross-format interoperability without data duplication, enabling multi-engine access to a single dataset, format migration pathways.
Connections 7
Outbound 6
Inbound 1
depends_on1Resources 3
Official Apache XTable project site documenting zero-copy metadata translation between Iceberg, Delta, and Hudi.
Source repository with build instructions, supported format versions, and configuration guides.
Practical comparison of XTable vs. Delta UniForm for interoperability, covering when to choose each approach.