Skip to main content

dbt-spark-livy-iceberg

The dbt-spark-livy-iceberg adapter lets you use dbt with Apache Spark on Cloudera Data Platform through the Livy interface. It is based on the dbt-spark project and the Cloudera dbt-spark-livy adapter, extended with:

  • Full Apache Iceberg supportfile_format='iceberg' for tables, incremental models (append, merge, insert_overwrite), seeds, and snapshots.
  • incremental_predicates for merges — pruning predicates are now passed into MERGE INTO ... ON, which the base adapter dropped.
  • Iceberg table properties — a tblproperties config for setting Iceberg options like format-version and write.merge.mode.
  • Dynamic Spark session configuration — a per-model spark_session_config config that issues SET key=value statements before the model runs.

The internal adapter type is still spark_livy, so existing profiles (method: livy) keep working. Only the pip distribution name changed.

Getting started

Requirements

  • Python >= 3.8
  • dbt-core ~= 1.3.0
  • pyspark, sqlparams, requests_kerberos, requests-toolbelt, python-decouple

Installing

pip install dbt-spark-livy-iceberg

Profile setup

demo_project:
  target: dev
  outputs:
    dev:
     type: spark_livy
     method: livy
     schema: my_db
     host: https://spark-livy-gateway.my.org.com/dbt-spark/cdp-proxy-api/livy_for_spark3/
     user: my_user
     password: my_pass
     # Optional: Spark conf applied once at Livy session creation.
     # Use this for catalog wiring (e.g. Iceberg catalog + extensions).
     livy_session_parameters:
       spark.sql.extensions: "org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions"
       spark.sql.catalog.spark_catalog: "org.apache.iceberg.spark.SparkSessionCatalog"
       spark.sql.catalog.spark_catalog.type: "hive"

Iceberg models

Incremental merge

{{ config(
    materialized='incremental',
    file_format='iceberg',
    incremental_strategy='merge',
    unique_key='id',
    incremental_predicates=[
      "DBT_INTERNAL_DEST.event_date >= current_date - interval 7 days"
    ],
    tblproperties={
      'format-version': '2',
      'write.merge.mode': 'merge-on-read'
    }
) }}

select id, event_date, payload
from {{ ref('source_events') }}
{% if is_incremental() %}
where event_date >= current_date - interval 7 days
{% endif %}
  • incremental_strategy supports append, merge, and insert_overwrite for Iceberg.
  • incremental_predicates are appended to the merge ON clause to enable partition pruning.
  • on_schema_change: sync_all_columns is supported for Iceberg (including dropping columns).

Dynamic Spark session configuration

Set Spark conf per model with spark_session_config. This issues SET key=value before the model builds.

{{ config(
    materialized='incremental',
    file_format='iceberg',
    incremental_strategy='insert_overwrite',
    partition_by=['event_date'],
    spark_session_config={
      'spark.sql.shuffle.partitions': '400',
      'spark.sql.sources.partitionOverwriteMode': 'dynamic'
    }
) }}
select ...

You can also set project-wide defaults in dbt_project.yml:

models:
  my_project:
    +spark_session_config:
      spark.sql.shuffle.partitions: '200'
    +tblproperties:
      write.merge.mode: 'merge-on-read'

Note: The Livy connection reuses a single shared SQL session for the whole dbt run, so SET values persist across models. Set the properties each model needs (or a project-level default) rather than assuming they reset between models.

Caveats

  • While using livy, in the Livy UI if you notice sessions change state to dead from starting instead of idle, make sure there is a proper mapping for the user in the IDBroker mapping section.
  • Actions > Manage Access > IDBroker Mappings. Reference
  • Also make sure the workload password is set either through UI or CLI. Reference
  • Iceberg catalog/extension wiring must be provided via Spark conf (livy_session_parameters in the profile, or spark_session_config per model).
  • Python models currently write with the Delta writer; Iceberg support here targets SQL models.

Supported features

See the original adapter documentation: https://github.com/dbt-labs/dbt-spark and https://docs.getdbt.com/reference/warehouse-profiles/spark-profile

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbt_spark_livy_iceberg-1.3.4.tar.gz (44.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dbt_spark_livy_iceberg-1.3.4-py3-none-any.whl (53.5 kB view details)

Uploaded Python 3

File details

Details for the file dbt_spark_livy_iceberg-1.3.4.tar.gz.

File metadata

  • Download URL: dbt_spark_livy_iceberg-1.3.4.tar.gz
  • Upload date:
  • Size: 44.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dbt_spark_livy_iceberg-1.3.4.tar.gz
Algorithm Hash digest
SHA256 818db7970020a865e991448107b661caf828585a026257b95c24d60ce5af329d
MD5 6dc165c0b808e487e41dac34ec76a15e
BLAKE2b-256 5ef8f23e648f86b08e07f0b0bca2f68e2cb613534768a6b499a3678c47297cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbt_spark_livy_iceberg-1.3.4.tar.gz:

Publisher: publish.yml on NikhilSuthar/dbt-spark-livy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbt_spark_livy_iceberg-1.3.4-py3-none-any.whl.

File metadata

File hashes

Hashes for dbt_spark_livy_iceberg-1.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b82f04c9c152e0dfb4d93b29b2257f197b697f0ec0265567d26a91ffe2a7ae1e
MD5 a68bf3744dce5bfb9e9da277b9dc4145
BLAKE2b-256 f1687c33f77212d58e2eb608e6c007e9fded2a7cf0446f71158493cc9cc26a74

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbt_spark_livy_iceberg-1.3.4-py3-none-any.whl:

Publisher: publish.yml on NikhilSuthar/dbt-spark-livy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.3.4 This release

2 files

1.3.3

2 files

1.3.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page