The Data Lakehouse architecture represents the modern convergence of data lakes and enterprise data warehouses. By implementing transactional metadata management layers directly on top of open, cost-effective cloud object storage (such as AWS S3, Google Cloud Storage, or Azure Data Lake Storage), the Lakehouse provides ACID transaction guarantees, schema evolution, versioned time-travel, and high-performance analytical query processing without requiring redundant data movement into proprietary warehouse silos.
+-------------------------------------------------------------------------------+
| ANALYTICAL STORAGE ARCHITECTURAL EVOLUTION |
+-------------------------------------------------------------------------------+
| Traditional Warehouse (EDW) Data Lake (Hadoop / S3) Modern Lakehouse |
| - Proprietary storage formats - Open Parquet/ORC files - Open Parquet files |
| - Strong ACID & high speed - Cheap object storage - Open Table Formats |
| - High cost, rigid schemas - No ACID, dirty reads - ACID, Time-Travel |
| - Compute & storage coupled - "Data Swamp" risk - Decoupled Engines |
+-------------------------------+-------------------------+---------------------+
Historically, organizations maintained two distinct systems:
This two-tier design required continuous ETL data duplication, induced synchronization lag, broke data governance lineage, and caused high cloud egress and compute costs. The Lakehouse replaces this duality with a single, open storage tier accessible simultaneously by SQL engines (Trino, DuckDB, Snowflake), streaming frameworks (Apache Flink, Spark), and AI pipelines (PyTorch, Ray).
Open table formats abstract collections of immutable Parquet or ORC data files into structured database tables.
+-------------------------------------------------------------------------------+
| APACHE ICEBERG METADATA HIERARCHY ARCHITECTURE |
+-------------------------------------------------------------------------------+
| [ Iceberg Catalog (REST, Hive Metastore, AWS Glue, DynamoDB, JDBC) ] |
| | (Atomic Pointer Swap: points to current Metadata JSON) |
| v |
| [ Table Metadata JSON: v3.metadata.json (Schema, Partition Spec, Snapshots) ] |
| | |
| v |
| [ Manifest List File: snap-827391.avro (Snapshots of Manifest Files) ] |
| | (Contains Partition Summaries and Bounds for Fast Pruning) |
| +-----------------------------+-----------------------------+ |
| | | | |
| v v v |
| [ Manifest File 1 (.avro) ] [ Manifest File 2 (.avro) ] [ Manifest 3 ] |
| (Data file paths & column (Data file paths & column (Data file paths) |
| min/max statistics) min/max statistics) |
| | | |
| v v |
| [ Parquet Data Files ] [ Parquet Data Files ] |
+-------------------------------------------------------------------------------+
In traditional Hive-style directory partitioning (/date=2026-06-21/region=US/), modifying partitioning schemes required rewriting terabytes of data.
In Apache Iceberg, partition specifications are decoupled from physical storage layouts:
days(ts) to hours(ts)) creates a new partition spec ID in the metadata JSON. Existing files remain untouched, while new writes use the updated layout.WHERE event_time >= '2026-06-01' without explicitly referencing synthetic partition columns (event_date), preventing accidental full-table scans.Lakehouses enforce ACID guarantees on object stores that offer only eventual or read-after-write consistency.
When two transactions write simultaneously:
Row-Level Mutations: Copy-on-Write (COW) vs. Merge-on-Read (MOR):
+-------------------------------+-----------------------------------------------+
| Strategy | Mechanism and Trade-Offs |
+-------------------------------+-----------------------------------------------+
| Copy-on-Write (COW) | Modifying 1 row rewrites the entire Parquet |
| | file. High write amplification; optimal for |
| | read-heavy analytical workloads. |
+-------------------------------+-----------------------------------------------+
| Merge-on-Read (MOR) | Writes modified rows to small Positional or |
| (with Deletion Vectors) | Equality Delete files. Fast real-time writes; |
| | query engine merges deletes at read time. |
+-------------------------------+-----------------------------------------------+
The Medallion Architecture structures data quality and transformation stages across three logical tiers:
Medallion Architecture Processing Flow:
Raw Sources (Kafka, CDC Logs, APIs, Files)
|
v
+-----------------------+
| BRONZE (Raw Landing) | ---> Raw, immutable, append-only historical record
+-----------------------+ Preserves full schema fidelity and raw JSON payloads
|
v [ Cleaning, Deduplication, Schema Enforcement, Typing ]
+-----------------------+
| SILVER (Enriched) | ---> Conformed, cleansed, joined enterprise datasets
+-----------------------+ Optimized for feature engineering & ad-hoc analysis
|
v [ Business Aggregations, Metric Calculations, Dimensional Modeling ]
+-----------------------+
| GOLD (Business Hub) | ---> Star/Snowflake schema data marts and metrics
+-----------------------+ Sub-second analytical BI reporting (Tableau, PowerBI)
Unmanaged continuous streaming ingestion generates millions of tiny files (the "small file problem"), which degrades query performance due to object store metadata API latency.
+---------------------------+-------------------+--------------------+------------------------+
| Feature | Apache Iceberg | Delta Lake | Apache Hudi |
+---------------------------+-------------------+--------------------+------------------------+
| Primary Origin | Netflix / Apache | Databricks / Linux | Uber / Apache |
| Multi-Engine Governance | Universal (Trino, | Strong (Universal | Strong (Presto, Spark, |
| | Spark, Snowflake) | via UniForm) | Flink) |
| Metadata Format | Avro Manifests | JSON Delta Log | Timeline + Avro Log |
| Partition Evolution | Fully Supported | Metadata partition | Physical partition |
| Row-Level Deletions | Positional Deletes| Deletion Vectors | Merge-on-Read Log |
| Time-Travel Querying | Snapshot / Time | Version / Timestamp| Timestamp commit query |
+---------------------------+-------------------+--------------------+------------------------+