The short version
Four things to know
- The format didn't change. Still 45 scored multiple-choice questions, 90 minutes, USD 200, proctored.
- “Productionizing Data Pipelines” was split into three sections — Lakeflow Jobs (16%), CI/CD and DevOps (10%), and Troubleshooting, Monitoring and Optimization (10%). Together that's 36% of the exam.
- The exam uses the new product names. DLT is now Lakeflow Spark Declarative Pipelines,
APPLY CHANGESisAUTO CDC, Workflows are Lakeflow Jobs, and Asset Bundles are Declarative Automation Bundles. - It's more hands-on. Expect more Spark UI diagnosis, job triggers and bundle deployment, and fewer questions on sharing and federation.
New blueprint
The seven sections and their weights
From the May 4, 2026 exam guide. Where each section's content came from in the previous 5-section guide is in the right-hand column.
| Section (May 2026) | Weight | Came from |
|---|---|---|
| Databricks Intelligence Platform | 6% | Databricks Intelligence Platform |
| Data Ingestion and Loading | 21% | Development and Ingestion |
| Data Transformation and Modeling | 22% | Data Processing & Transformations |
| Working with Lakeflow Jobs | 16% | Productionizing Data Pipelines |
| Development, CI/CD, and DevOps | 10% | Productionizing Data Pipelines (new focus) |
| Troubleshooting, Monitoring, and Optimization | 10% | Productionizing Data Pipelines (new focus) |
| Data Governance and Security | 15% | Data Governance & Quality |
Rename map
Old name → the name you'll see on the exam
Most pre-2026 courses and blog posts use the old names. The concepts are the same — only the labels moved.
| You may have learned | Now called | Notes |
|---|---|---|
| Delta Live Tables (DLT) | Lakeflow Spark Declarative Pipelines | Streaming tables, materialized views and expectations work as before. |
import dlt, @dlt.table | from pyspark import pipelines as dp, @dp.table | Expectations become @dp.expect, @dp.expect_or_drop, @dp.expect_or_fail. |
APPLY CHANGES INTO | AUTO CDC INTO | Same syntax. Python: dp.create_auto_cdc_flow(). The old API still runs, but AUTO CDC is recommended. |
| Databricks Workflows / Jobs | Lakeflow Jobs | Now its own exam section: triggers, task dependencies, retries, job compute. |
| Databricks Asset Bundles (DABs) | Declarative Automation Bundles | Renamed March 16, 2026. databricks.yml and the databricks bundle CLI are unchanged. |
| Repos | Git folders | Git integration inside the workspace. |
Study plan
What to add to your study plan
Lakeflow Jobs (16%)
Know every trigger type and when to use it: scheduled (cron), file arrival, table update, and continuous. Understand task dependencies, per-task retries, and why job compute beats all-purpose compute for scheduled work.
CI/CD and DevOps (10%)
Declarative Automation Bundles: the databricks.yml root file, targets (dev/staging/prod) with per-target overrides, and the databricks bundle validate → deploy → run flow. Git folders and unit-testing transformation logic.
Troubleshooting, monitoring and optimization (10%)
Reading the Spark UI: spotting data skew (max task time far above the median), spill to disk, and straggler tasks. Adaptive query execution's skew-join handling, broadcast joins, salting, and liquid clustering.
Governance and security (15%)
Unity Catalog privileges and inheritance (USE CATALOG + USE SCHEMA + SELECT), managed vs. external tables, row filters and column masks, and attribute-based access control with governed tags.
FAQ
Frequently asked questions
Did the Databricks Data Engineer Associate exam change in 2026?
Yes. The exam guide dated May 4, 2026 reorganised the exam from 5 sections into 7, with dedicated sections for Lakeflow Jobs, CI/CD and DevOps, and troubleshooting, monitoring and optimization. The format stayed the same: 45 scored questions in 90 minutes for USD 200.
Is Delta Live Tables (DLT) still on the exam?
The concepts are, under the new name. Delta Live Tables is now Lakeflow Spark Declarative Pipelines, and the exam uses the new terminology: streaming tables, materialized views, expectations and AUTO CDC.
What replaced APPLY CHANGES INTO?
AUTO CDC INTO in SQL, and dp.create_auto_cdc_flow() in Python. They have the same syntax. APPLY CHANGES still works, but Databricks recommends the AUTO CDC APIs.
What are Declarative Automation Bundles?
The new name, since March 16, 2026, for Databricks Asset Bundles. The rename is non-breaking: the databricks bundle CLI commands and databricks.yml configuration are unchanged.
Can I still study with pre-2026 material?
Mostly, yes. The core concepts (Delta Lake, Auto Loader, Unity Catalog privileges, the medallion architecture) are the same. Translate the old product names using the rename table on this page, and add study time for the new CI/CD and troubleshooting sections.
Sources
Where this comes from
- Databricks: The AUTO CDC APIs (replace APPLY CHANGES)
- Databricks: What are Lakeflow pipelines?
- Databricks: Declarative Automation Bundles FAQs (rename)
- Databricks: Automate jobs with schedules and triggers
- Databricks: Adaptive query execution
- Databricks: Row filters and column masks
- Databricks Certified Data Engineer Associate exam guide (May 2026, PDF)
See how you'd score today
A full-length, timed Data Engineer Associate practice test — free, with an explanation for every answer.
Start the free practice test →