Delta (Spark)

This connector is used to read Delta tables using Spark.

⚠️ A Spark connector can only be used with another Spark connector. It is not possible to mix Spark and native connectors in the same test case.

See Spark mode overview for more information.

Connection configuration

No connection is required by this connector.

Test case configuration

NameMandatoryDefaultDescription
pathyesPath to the Delta table directory

Example

Example Delta Spark:
  source:
    type: delta_spark
    path: /lakehouse/default/Tables/employees
  expected:
    type: csv_spark
    path: /lakehouse/default/Files/expected/employees.csv
    header: true
    inferSchema: true