21% of the Associate exam — the second-largest section, and the largest one that's purely mechanical skill rather than judgment. It's also where most production incidents are born. A badly built ingestion layer doesn't fail loudly; it silently drops columns, duplicates rows after a restart, or quietly costs ten times what it should in storage API calls.
The good news: Databricks has converged on a small number of correct patterns. Learn those and most of the difficulty evaporates.
Databricks now frames ingestion as three layers, and tells you to start at the most managed one and only drop down when it can't do the job:
MOST MANAGED LEAST MANAGED
┌────────────────────┐ ┌──────────────────┐ ┌────────────────────────┐
│ Managed Connectors │→ │ Lakeflow │→ │ Structured Streaming │
│ (Lakeflow Connect) │ │ Pipelines │ │ (Spark APIs) │
└────────────────────┘ └──────────────────┘ └────────────────────────┘
auth, CDC, retries, orchestration, full control, full
schema evolution, monitoring, data responsibility
API maintenance quality, errors
"Databricks recommends starting with the most managed layer. If it doesn't satisfy your requirements (for example, if it doesn't support your data source), drop down to the next layer." — Ingest data (2026-07-10)
Engineers reflexively start at the bottom because that's where the interesting code is. The recommended direction is top-down. That's both an exam answer and good professional advice.
read_files and CREATE STREAMING TABLE.AUTO CDC, producing correct SCD Type 1 and Type 2 output.COPY INTO.| # | Lesson | Read | Listen |
|---|---|---|---|
| 1 | Choosing your ingestion layer | 18 min | 6 min |
| 2 | Auto Loader: schema, evolution, rescue | 30 min | 11 min |
| 3 | File detection modes across three clouds | 26 min | 9 min |
| 4 | SQL ingestion: read_files, streaming tables, COPY INTO | 26 min | 9 min |
| 5 | Lakeflow Connect and CDC | 30 min | 7 min |
Then: Cheat sheet · Lab · Quiz
While researching this module I hit two genuine inconsistencies in Databricks' live
documentation — the valid values for cloudFiles.schemaEvolutionMode, and whether the rescued-data
option carries a cloudFiles. prefix. Both are flagged where they arise.
I'm telling you rather than smoothing over it, for two reasons. It'll save you an afternoon when you hit it yourself. And "the docs contradict themselves here, so I tested it" is a genuinely good interview answer.
Facts verified 2026-07-30 against the pages cited in each lesson.
🎧 48 min of audio. Open any lesson and press Play — or start with lesson 1.