iceberg-rust 0.10.0

Unofficial rust implementation of the Iceberg table format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Arrow integration for Apache Iceberg
//!
//! This module provides functionality for working with Apache Arrow data structures
//! in Apache Iceberg:
//!
//! - `partition`: Handles partitioning of Arrow arrays according to Iceberg partition specs
//! - `read`: Provides utilities for reading Iceberg data into Arrow arrays and record batches
//! - `transform`: Implements Iceberg partition transforms for Arrow arrays
//! - `write`: Contains functionality for writing Arrow data into Iceberg table formats
//!
//! The Arrow integration allows efficient in-memory processing of Iceberg data using
//! Arrow's columnar format and computational libraries.

pub mod partition;
pub mod read;
pub mod transform;
pub mod write;