1---2name: databricks-iceberg3description: Apache Iceberg tables on Databricks — Managed Iceberg tables, External Iceberg Reads (fka Uniform), Compatibility Mode, Iceberg REST Catalog (IRC), Iceberg v3, Snowflake interop, PyIceberg, OSS Spark, external engine access and credential vending. Use when creating Iceberg tables, enabling External Iceberg Reads (uniform) on Delta tables (including Streaming Tables and Materialized Views via compatibility mode), configuring external engines to read Databricks tables via Unity Catalog IRC, integrating with Snowflake catalog to read Foreign Iceberg tables4---5
6# Apache Iceberg on Databricks
7
8Databricks provides multiple ways to work with Apache Iceberg: native managed Iceberg tables, UniForm for Delta-to-Iceberg interoperability, and the Iceberg REST Catalog (IRC) for external engine access.
9
10---
11
12## Critical Rules (always follow)
13
14- **MUST** use Unity Catalog — all Iceberg features require UC-enabled workspaces
15- **MUST NOT** install an Iceberg library into Databricks Runtime (DBR includes built-in Iceberg support; adding a library causes version conflicts)
16- **MUST NOT** set `write.metadata.path` or `write.metadata.previous-versions-max` — Databricks manages metadata locations automatically; overriding causes corruption
17- **MUST** determine which Iceberg pattern fits the use case before writing code — see the [When to Use](#when-to-use) section below
18- **MUST** know that both `PARTITIONED BY` and `CLUSTER BY` produce the same Iceberg metadata for external engines — UC maintains an Iceberg partition spec with partition fields corresponding to the clustering keys, so external engines reading via IRC see a partitioned Iceberg table (not Hive-style, but proper Iceberg partition fields) and can prune on those fields; internally UC uses those fields as liquid clustering keys; the only differences between the two syntaxes are: (1) `PARTITIONED BY` is standard Iceberg DDL (any engine can create the table), while `CLUSTER BY` is DBR-only DDL; (2) `PARTITIONED BY` **auto-handles** DV/row-tracking properties, while `CLUSTER BY` requires manual TBLPROPERTIES on v2
19- **MUST NOT** use expression-based partition transforms (`bucket()`, `years()`, `months()`, `days()`, `hours()`) with `PARTITIONED BY` on managed Iceberg tables — only plain column references are supported; expression transforms cause errors
20- **MUST** disable deletion vectors and row tracking when using `CLUSTER BY` on Iceberg v2 tables — set `'delta.enableDeletionVectors' = false` and `'delta.enableRowTracking' = false` in TBLPROPERTIES (Iceberg v3 handles this automatically; `PARTITIONED BY` handles this automatically on both v2 and v3)
21
22---
23
24## Key Concepts
25
26| Concept | Summary |
27|---------|---------|
28| **Managed Iceberg Table** | Native Iceberg table created with `USING ICEBERG` — full read/write in Databricks and via external Iceberg engines |
29| **External Iceberg Reads (Uniform)** | Delta table that auto-generates Iceberg metadata — read as Iceberg externally, write as Delta internally |
30| **Compatibility Mode** | UniForm variant for streaming tables and materialized views in SDP pipelines |
31| **Iceberg REST Catalog (IRC)** | Unity Catalog's built-in REST endpoint implementing the Iceberg REST Catalog spec — lets external engines (Spark, PyIceberg, Snowflake) access UC-managed Iceberg data |
32| **Iceberg v3** | Next-gen format (Beta, DBR 17.3+) — deletion vectors, VARIANT type, row lineage |
33
34---
35
36## Quick Start
37
38### Create a Managed Iceberg Table
39
40```sql
41-- No clustering
42CREATE TABLE my_catalog.my_schema.events
43USING ICEBERG
44AS SELECT * FROM raw_events;
45
46-- PARTITIONED BY (recommended for cross-platform): standard Iceberg syntax, works on EMR/OSS Spark/Trino/Flink
47-- auto-disables DVs and row tracking — no TBLPROPERTIES needed on v2 or v3
48CREATE TABLE my_catalog.my_schema.events
49USING ICEBERG
50PARTITIONED BY (event_date)
51AS SELECT * FROM raw_events;
52
53-- CLUSTER BY on Iceberg v2 (DBR-only syntax): must manually disable DVs and row tracking
54CREATE TABLE my_catalog.my_schema.events
55USING ICEBERG
56TBLPROPERTIES (
57 'delta.enableDeletionVectors' = false,
58 'delta.enableRowTracking' = false
59)
60CLUSTER BY (event_date)
61AS SELECT * FROM raw_events;
62
63-- CLUSTER BY on Iceberg v3 (DBR-only syntax): no TBLPROPERTIES needed
64CREATE TABLE my_catalog.my_schema.events
65USING ICEBERG
66TBLPROPERTIES ('format-version' = '3')
67CLUSTER BY (event_date)
68AS SELECT * FROM raw_events;
69```
70
71### Enable UniForm on an Existing Delta Table
72
73```sql
74ALTER TABLE my_catalog.my_schema.customers
75SET TBLPROPERTIES (
76 'delta.columnMapping.mode' = 'name',
77 'delta.enableIcebergCompatV2' = 'true',
78 'delta.universalFormat.enabledFormats' = 'iceberg'
79);
80```
81
82---
83
84## Read/Write Capability Matrix
85
86| Table Type | Databricks Read | Databricks Write | External IRC Read | External IRC Write |
87|------------|:-:|:-:|:-:|:-:|
88| Managed Iceberg (`USING ICEBERG`) | Yes | Yes | Yes | Yes |
89| Delta + UniForm | Yes (as Delta) | Yes (as Delta) | Yes (as Iceberg) | No |
90| Delta + Compatibility Mode | Yes (as Delta) | Yes | Yes (as Iceberg) | No |
91
92---
93
94## Reference Files
95
96| File | Summary | Keywords |
97|------|---------|----------|
98| [references/1-managed-iceberg-tables.md](references/1-managed-iceberg-tables.md) | Creating and managing native Iceberg tables — DDL, DML, Liquid Clustering, Predictive Optimization, Iceberg v3, limitations | CREATE TABLE USING ICEBERG, CTAS, MERGE, time travel, deletion vectors, VARIANT |
99| [references/2-uniform-and-compatibility.md](references/2-uniform-and-compatibility.md) | Making Delta tables readable as Iceberg — UniForm for regular tables, Compatibility Mode for streaming tables and MVs | UniForm, universalFormat, Compatibility Mode, streaming tables, materialized views, SDP |
100| [references/3-iceberg-rest-catalog.md](references/3-iceberg-rest-catalog.md) | Exposing Databricks tables to external engines via the IRC endpoint — auth, credential vending, IP access lists | IRC, REST Catalog, credential vending, EXTERNAL USE SCHEMA, PAT, OAuth |
101| [references/4-snowflake-interop.md](references/4-snowflake-interop.md) | Bidirectional Snowflake-Databricks integration — catalog integration, foreign catalogs, vended credentials | Snowflake, catalog integration, external volume, vended credentials, REFRESH_INTERVAL_SECONDS |
102| [references/5-external-engine-interop.md](references/5-external-engine-interop.md) | Connecting PyIceberg, OSS Spark, AWS EMR, Apache Flink, and Kafka Connect via IRC | PyIceberg, OSS Spark, EMR, Flink, Kafka Connect, pyiceberg.yaml |
103
104---
105
106## When to Use
107
108- **Creating a new Iceberg table** → [references/1-managed-iceberg-tables.md](references/1-managed-iceberg-tables.md)
109- **Making an existing Delta table readable as Iceberg** → [references/2-uniform-and-compatibility.md](references/2-uniform-and-compatibility.md)
110- **Making a streaming table or MV readable as Iceberg** → [references/2-uniform-and-compatibility.md](references/2-uniform-and-compatibility.md) (Compatibility Mode section)
111- **Choosing between Managed Iceberg vs UniForm vs Compatibility Mode** → decision table in [references/2-uniform-and-compatibility.md](references/2-uniform-and-compatibility.md)
112- **Exposing Databricks tables to external engines via REST API** → [references/3-iceberg-rest-catalog.md](references/3-iceberg-rest-catalog.md)
113- **Integrating Databricks with Snowflake (either direction)** → [references/4-snowflake-interop.md](references/4-snowflake-interop.md)
114- **Connecting PyIceberg, OSS Spark, Flink, EMR, or Kafka** → [references/5-external-engine-interop.md](references/5-external-engine-interop.md)
115
116---
117
118## Common Issues
119
120| Issue | Solution |
121|-------|----------|
122| **No Change Data Feed (CDF)** | CDF is not supported on managed Iceberg tables. Use Delta + UniForm if you need CDF. |
123| **UniForm async delay** | Iceberg metadata generation is asynchronous. After a write, there may be a brief delay before external engines see the latest data. Check status with `DESCRIBE EXTENDED table_name`. |
124| **Compression codec change** | Managed Iceberg tables use `zstd` compression by default (not `snappy`). Older Iceberg readers that don't support zstd will fail. Verify reader compatibility or set `write.parquet.compression-codec` to `snappy`. |
125| **Snowflake 1000-commit limit** | Snowflake's Iceberg catalog integration can only see the last 1000 Iceberg commits. High-frequency writers must compact metadata or Snowflake will lose visibility of older data. |
126| **Deletion vectors with UniForm** | UniForm requires deletion vectors to be disabled (`delta.enableDeletionVectors = false`). If your table has deletion vectors enabled, disable them before enabling UniForm. |
127| **No shallow clone for Iceberg** | `SHALLOW CLONE` is not supported for Iceberg tables. Use `DEEP CLONE` or `CREATE TABLE ... AS SELECT` instead. |
128| **Version mismatch with external engines** | Ensure external engines use an Iceberg library version compatible with the format version of your tables. Iceberg v3 tables require Iceberg library 1.9.0+. |
129
130---
131
132## Related Skills
133
134- **[databricks-unity-catalog](../databricks-unity-catalog/SKILL.md)** — catalog/schema management, governance, system tables
135- **databricks-pipelines** — SDP pipelines (streaming tables, materialized views with Compatibility Mode)
136- **[databricks-python-sdk](../databricks-python-sdk/SKILL.md)** — Python SDK and REST API for Databricks operations
137- **[databricks-dbsql](../databricks-dbsql/SKILL.md)** — SQL warehouse features, query patterns
138
139---
140
141## Resources
142
143- **[Iceberg Overview](https://docs.databricks.com/iceberg/)** — main hub for Iceberg on Databricks
144- **[UniForm](https://docs.databricks.com/delta/uniform.html)** — Delta Universal Format
145- **[Iceberg REST Catalog](https://docs.databricks.com/external-access/iceberg)** — IRC endpoint and external engine access
146- **[Compatibility Mode](https://docs.databricks.com/external-access/compatibility-mode)** — UniForm for streaming tables and MVs
147- **[Iceberg v3](https://docs.databricks.com/iceberg/iceberg-v3)** — next-gen format features (Beta)
148- **[Foreign Tables](https://docs.databricks.com/query-data/foreign-tables.html)** — reading external catalog data