If you’ve been building pipelines on Databricks for any amount of time, you know the pain: DLT for transformations, partner tools for ingestion, notebooks for orchestration, and a prayer that everything stays in sync. Lakeflow consolidates all of that into a single, GA-ready platform.
This isn’t a rebrand. It’s a genuine unification of ingestion, transformation, and orchestration under one roof — with some significant new capabilities that change how you should think about data engineering on Databricks.
What Is Lakeflow? #
Lakeflow is Databricks’ unified data engineering platform, now Generally Available. It brings three components under one umbrella:
| Component | What It Does | Formerly Known As |
|---|---|---|
| Declarative Pipelines | Transformation & orchestration | Delta Live Tables (DLT) |
| Lakeflow Connect | Managed ingestion from SaaS & databases | Partner Connect / custom connectors |
| Lakeflow Designer | Visual, no-code pipeline builder | (New) |
The key insight: these aren’t three separate products bolted together. They share a common execution engine, unified monitoring, and a single API surface. Your Connect ingestion feeds directly into Declarative Pipelines transformations without intermediate landing zones or glue code.
Declarative Pipelines: DLT Grows Up #
If you’ve used Delta Live Tables, Declarative Pipelines will feel familiar — because it is DLT, with a new name and significant improvements. The core programming model is the same: you declare what your data should look like, and the engine figures out how to get there.
What Changed from DLT #
The rename isn’t cosmetic. Key differences:
-
Serverless by default. No more cluster management. Pipelines run on serverless compute with automatic scaling. You pay per DBU consumed, not for idle clusters.
-
Materialized Views and Streaming Tables are first-class. These are no longer DLT-only concepts — they’re Unity Catalog objects accessible from any Databricks SQL warehouse or notebook.
-
Row-level expectations with actions. You can now define data quality rules that
drop,fail, orquarantinebad rows:
|
|
-
Python and SQL parity. SQL pipelines now support the full feature set that was previously Python-only, including parameterized queries and complex flow control.
-
Built-in orchestration. Pipelines can be composed into multi-task jobs with dependencies, retries, and conditional execution — no need for external orchestrators.
Migration Checklist: DLT to Declarative Pipelines #
If you have existing DLT pipelines, here’s what you need to do:
- Nothing breaks immediately. Existing DLT pipelines continue to run. The API endpoints are aliased.
- Update imports.
import dltremains valid. ThedltPython module is the canonical import. - Review compute settings. Serverless is now the default for new pipelines. Existing pipelines retain their classic compute configuration until you explicitly migrate.
- Audit expectations. If you were using
expectwithout an action, the default behavior (warn) hasn’t changed — but now is a good time to add explicitdroporfailactions. - Check Unity Catalog registration. Materialized views and streaming tables created by Declarative Pipelines are automatically registered in Unity Catalog. Verify your governance policies cover these new objects.
|
|
Lakeflow Connect: Free Ingestion That Actually Works #
This is the game-changer for cost-conscious teams. Lakeflow Connect provides managed, no-code ingestion from popular sources — and the free tier gives you 100 DBU per day at no cost.
Supported Sources (GA) #
The connector library keeps growing, but at GA these are production-ready:
SaaS Applications:
- Salesforce
- ServiceNow
- Microsoft Dynamics 365
- Workday
- Google Analytics
- HubSpot
- Zendesk
Databases (CDC):
- PostgreSQL
- MySQL
- SQL Server
- Oracle
- MongoDB
Cloud Storage:
- Amazon S3
- Azure Blob Storage / ADLS Gen2
- Google Cloud Storage
Setting Up a Connect Pipeline #
Creating an ingestion pipeline is refreshingly simple. From the workspace UI:
- Navigate to Data Engineering > Lakeflow Connect
- Select your source type
- Provide connection credentials (stored in Unity Catalog secrets)
- Choose tables/objects to ingest
- Select target catalog and schema
- Configure sync mode: Full Refresh or Incremental (CDC)
For the programmatic types, the REST API works too:
|
|
The Free Tier Math #
100 DBU/day translates to roughly:
- ~20-30 tables with hourly incremental sync from a typical SaaS source
- ~5-10 million rows/day from database CDC sources (depending on row size)
- Enough for most small-to-medium analytics teams’ ingestion needs
If you exceed the free tier, you pay standard serverless DBU rates. There’s no cliff — it’s a smooth transition.
Pro tip: Start with your highest-value, lowest-volume sources on Connect’s free tier. Use the savings to justify expanding to paid ingestion for larger sources.
Lakeflow Designer: No-Code for Real #
Designer is the visual pipeline builder, and — hot take — it’s actually useful. Not just for non-technical users, but for prototyping complex transformations before writing production code.
What Designer Can Do #
- Drag-and-drop transformations: Filter, join, aggregate, pivot, unpivot, and custom SQL — all in a visual canvas
- Live preview: See sample data at every stage of your pipeline without running the full job
- Code generation: Every Designer pipeline generates clean Python or SQL that you can export, version control, and extend
- Collaboration-friendly: Share visual pipelines with stakeholders who can understand the logic without reading code
When to Use Designer vs. Code #
| Use Case | Designer | Code |
|---|---|---|
| Prototyping a new pipeline | Yes | |
| Complex business logic | Yes | |
| Stakeholder review | Yes | |
| Production pipeline (simple) | Yes | |
| Production pipeline (complex) | Yes | |
| Ad-hoc data exploration | Yes | |
| CI/CD integration | Yes |
The sweet spot: use Designer to prototype and get stakeholder buy-in, then export to code for production. The generated code is clean enough to use as a starting point — you’re not fighting auto-generated spaghetti.
Designer Example: SCD Type 2 #
Here’s where Designer earns its keep. Slowly Changing Dimension Type 2 is one of those patterns that’s tedious to write from scratch every time. In Designer:
- Drag in your source table
- Add a “SCD Type 2” transformation block
- Configure: business key, tracked columns, effective date column
- Connect to your target table
Designer generates the merge logic, handles the surrogate keys, and manages the effective_from / effective_to / is_current columns. The generated SQL is standard MERGE INTO — no proprietary magic.
Putting It All Together: A Complete Pipeline #
Here’s a realistic example that uses all three Lakeflow components:
Architecture #
|
|
Step 1: Ingestion with Connect #
Set up two Connect pipelines — one for Salesforce (free tier), one for your application PostgreSQL (CDC):
|
|
Step 2: Transform with Declarative Pipelines #
|
|
Step 3: Orchestrate #
Define a multi-task job that runs Connect ingestion first, then transformations:
|
|
Cost Considerations #
Lakeflow pricing is DBU-based, with some notable details:
| Component | Pricing Model | Notes |
|---|---|---|
| Declarative Pipelines | Serverless DBU | Pay for compute time only |
| Lakeflow Connect | Free up to 100 DBU/day, then serverless DBU | Per-workspace free tier |
| Lakeflow Designer | No additional cost | Included with workspace |
Cost optimization tips:
- Use Connect’s free tier strategically. 100 DBU/day is generous for ingestion. Don’t waste it on full refreshes when incremental CDC works.
- Right-size pipeline triggers. Not every table needs real-time. Batch daily for dimensional data, stream only for truly time-sensitive sources.
- Leverage expectations to fail fast. Bad data that makes it to gold costs more to fix than data that gets quarantined at silver.
- Monitor with system tables.
system.billing.usagegives you per-pipeline cost breakdowns.
|
|
What’s Still Missing #
Lakeflow is GA, but it’s not done. A few gaps to be aware of:
- Connect source coverage. The connector library is growing but still smaller than mature tools like Fivetran or Airbyte. If your source isn’t supported, you’re still writing custom ingestion.
- Designer complexity ceiling. For truly complex transformations (recursive CTEs, custom UDFs, multi-hop streaming), you’ll outgrow Designer quickly. That’s by design — it’s a prototyping tool, not a replacement for code.
- Cross-workspace pipelines. Lakeflow pipelines are workspace-scoped. If you need cross-workspace orchestration, you’re still using multi-workspace jobs or external orchestrators.
- Terraform support. The Databricks Terraform provider supports Declarative Pipelines, but Connect and Designer resources aren’t fully covered yet.
Bottom Line #
Lakeflow is the first time Databricks has offered a genuinely unified data engineering experience. The free Connect tier lowers the barrier to entry, Designer makes pipelines accessible to non-engineers, and Declarative Pipelines (née DLT) is a mature, production-proven transformation engine.
If you’re already on Databricks, there’s no reason not to evaluate Lakeflow for new pipelines. If you’re evaluating Databricks, Lakeflow just made the platform significantly more compelling for data engineering workloads.
The migration from DLT is painless. The free ingestion tier is real. And Designer — surprisingly — doesn’t suck. That’s a win.
Have questions about Lakeflow or want to share your migration experience? Connect with me on LinkedIn.