Iceberg integration
Users can integrate with the Iceberg table format via the table function.
iceberg Table Function
Provides a read-only table-like interface to Apache Iceberg tables in Amazon S3, Azure, HDFS or locally stored.
Syntax
Arguments
Description of the arguments coincides with description of arguments in table functions s3
, azureBlobStorage
, HDFS
and file
correspondingly.
format
stands for the format of data files in the Iceberg table.
Returned value
A table with the specified structure for reading data in the specified Iceberg table.
Example
ClickHouse currently supports reading v1 and v2 of the Iceberg format via the icebergS3
, icebergAzure
, icebergHDFS
and icebergLocal
table functions and IcebergS3
, icebergAzure
, IcebergHDFS
and IcebergLocal
table engines.
Defining a named collection
Here is an example of configuring a named collection for storing the URL and credentials:
Schema Evolution
At the moment, with the help of CH, you can read iceberg tables, the schema of which has changed over time. We currently support reading tables where columns have been added and removed, and their order has changed. You can also change a column where a value is required to one where NULL is allowed. Additionally, we support permitted type casting for simple types, namely:
- int -> long
- float -> double
- decimal(P, S) -> decimal(P', S) where P' > P.
Currently, it is not possible to change nested structures or the types of elements within arrays and maps.
Partition Pruning
ClickHouse supports partition pruning during SELECT queries for Iceberg tables, which helps optimize query performance by skipping irrelevant data files. Now it works with only identity transforms and time-based transforms (hour, day, month, year). To enable partition pruning, set use_iceberg_partition_pruning = 1
.
Time Travel
ClickHouse supports time travel for Iceberg tables, allowing you to query historical data with a specific timestamp or snapshot ID.
Basic usage
Note: You cannot specify both iceberg_timestamp_ms
and iceberg_snapshot_id
parameters in the same query.
Important considerations
-
Snapshots are typically created when:
- New data is written to the table
- Some kind of data compaction is performed
-
Schema changes typically don't create snapshots - This leads to important behaviors when using time travel with tables that have undergone schema evolution.
Example scenarios
All scenarios are written in Spark because CH doesn't support writing to Iceberg tables yet.
Scenario 1: Schema Changes Without New Snapshots
Consider this sequence of operations:
Query results at different timestamps:
- At ts1 & ts2: Only the original two columns appear
- At ts3: All three columns appear, with NULL for the price of the first row
Scenario 2: Historical vs. Current Schema Differences
A time travel query at a current moment might show a different schema than the current table:
This happens because ALTER TABLE
doesn't create a new snapshot but for the current table Spark takes value of schema_id
from the latest metadata file, not a snapshot.
Scenario 3: Historical vs. Current Schema Differences
The second one is that while doing time travel you can't get state of table before any data was written to it:
In Clickhouse the behavior is consistent with Spark. You can mentally replace Spark Select queries with Clickhouse Select queries and it will work the same way.
Aliases
Table function iceberg
is an alias to icebergS3
now.