Skip to content

Installation

Installation of Delta Lake boils down to using spark-submit's --packages command-line option with the following configuration properties for DeltaSparkSessionExtension and DeltaCatalog:

Make sure that the version of Scala in Apache Spark should match Delta Lake's.

Spark SQL Application

import org.apache.spark.sql.SparkSession
val spark = SparkSession
  .builder
  .config("spark.sql.extensions", "io.delta.sql.DeltaSparkSessionExtension")
  .config("spark.sql.catalog.spark_catalog", "org.apache.spark.sql.delta.catalog.DeltaCatalog")
  .getOrCreate

Spark Shell

./bin/spark-shell \
  --packages io.delta:delta-spark_2.13:3.1.0 \
  --conf spark.sql.extensions=io.delta.sql.DeltaSparkSessionExtension \
  --conf spark.sql.catalog.spark_catalog=org.apache.spark.sql.delta.catalog.DeltaCatalog

Version

io.delta.VERSION can be used to show the version of Delta Lake installed.

assert(io.delta.VERSION == "3.1.0")

It is also possible to use DESCRIBE HISTORY and check out the engineInfo column.