Lakehouse platforms & table formats · Linux Foundation (originated by Databricks)

Delta Lake

Open-source storage format that brings ACID transactions and versioning to Parquet files on a data lake.

Delta Lake is an open-source storage format, originally created by Databricks and now governed under the Linux Foundation, that layers a transaction log on top of Parquet files to bring database-style reliability to a data lake. It records every change to a table in an ordered, versioned log, which enables ACID transactions, time travel to earlier versions, schema enforcement and evolution, and safe concurrent reads and writes from multiple compute engines. Delta Lake underpins Databricks' lakehouse (and Microsoft Fabric's OneLake) but is also readable and writable by Spark, Trino, Flink, and other open-source engines outside Databricks. It is a library and specification rather than a hosted product: teams adopt it by pointing existing Spark or SQL workloads at Delta-formatted tables instead of raw Parquet.

At a glance

Vendor Linux Foundation (originated by Databricks)
Pricing model Open source + paid options
Free tier Yes
Deployment Self-hosted
Open source Yes (Apache-2.0)
Best for Spark-centric teams wanting reliable, versioned tables on a data lake without a separate warehouse.

Pricing

Free, open-source table format; no vendor pricing of its own, though Databricks and other lakehouse platforms charge separately for the compute that reads and writes Delta tables.

Pricing has not been verified yet — see the vendor's site.

Features

  • ACID transactions via an ordered transaction log
  • Time travel to query or roll back to prior table versions
  • Schema enforcement and controlled schema evolution
  • Concurrent batch and streaming reads/writes to the same table
  • Data compaction and Z-ordering for query performance
  • Change Data Feed for incremental downstream processing
  • Native support in Apache Spark, with connectors for Trino, Flink, and Presto

Integrations

Profile last reviewed September 21, 2026

Head to head

Alternatives

Delta Lake in the index now

Terms to know

Related guides