Data Engineering with Databricks
This is an introductory course that serves as an appropriate entry point to learn Data Engineering with Databricks.
Below, we describe each of the four, four-hour modules included in this course.
1. Data Ingestion with Lakeflow Connect
This course provides a comprehensive introduction to Lakeflow Connect as a scalable and simplified solution for ingesting data into Databricks from a variety of data sources. You will begin by exploring the different types of connectors within Lakeflow Connect (Standard and Managed), learn about various ingestion techniques, including batch, incremental batch, and streaming, and then review the key benefits of Delta tables and the Medallion architecture.
From there, you will gain practical skills to efficiently ingest data from cloud object storage using Lakeflow Connect Standard Connectors with methods such as CREATE TABLE AS (CTAS), COPY INTO, and Auto Loader, along with the benefits and considerations of each approach. You will then learn how to append metadata columns to your bronze level tables during ingestion into the Databricks data intelligence platform. This is followed by working with the rescued data column, which handles records that don’t match the schema of your bronze table, including strategies for managing this rescued data.
The course also introduces techniques for ingesting and flattening semi-structured JSON data, as well as enterprise-grade data ingestion using Lakeflow Connect Managed Connectors.
Finally, learners will explore alternative ingestion strategies, including MERGE INTO operations and leveraging the Databricks Marketplace, equipping you with foundational knowledge to support modern data engineering ingestion.
2. Deploy Workloads with Lakeflow Jobs
Deploy Workloads with Lakeflow Jobs course teaches how to orchestrate and automate data, analytics, and AI workflows using Lakeflow Jobs. You will learn to make robust, production-ready pipelines with flexible scheduling, advanced orchestration, and best practices for reliability and efficiency-all natively integrated within the Databricks Data intelligence Platform. Prior experience with Databricks, Python and SQL is recommended.
3. Build Data Pipelines with Lakeflow Spark Declarative Pipelines
This course introduces users to the essential concepts and skills needed to build data pipelines using Lakeflow Spark Declarative Pipelines (SDP) in Databricks for incremental batch or streaming ingestion and processing through multiple streaming tables and materialized views. Designed for data engineers new to Spark Declarative Pipelines, the course provides a comprehensive overview of core components such as incremental data processing, streaming tables, materialized views, and temporary views, highlighting their specific purposes and differences.
Topics covered include:
- Developing and debugging ETL pipelines with the multi-file editor in Spark Declarative Pipelines using SQL (with Python code examples provided)
- How Spark Declarative Pipelines track data dependencies in a pipeline through the pipeline graph
- Configuring pipeline compute resources, data assets, trigger modes, and other advanced options
Next, the course introduces data quality expectations in Spark Declarative Pipelines, guiding users through the process of integrating expectations into pipelines to validate and enforce data integrity. Learners will then explore how to put a pipeline into production, including scheduling options, and enabling pipeline event logging to monitor pipeline performance and health.
Finally, the course covers how to implement Change Data Capture (CDC) using the AUTO CDC INTO syntax within Spark Declarative Pipelines to manage slowly changing dimensions (SCD Type 1 and Type 2), preparing users to integrate CDC into their own pipelines.
4. DevOps Essentials for Data Engineering
This course explores software engineering best practices and DevOps principles, specifically designed for data engineers working with Databricks. Participants will build a strong foundation in key topics such as code quality, version control, documentation, and testing. The course emphasizes DevOps, covering core components, benefits, and the role of continuous integration and delivery (CI/CD) in optimizing data engineering workflows.
You will learn how to apply modularity principles in PySpark to create reusable components and structure code efficiently. Hands-on experience includes designing and implementing unit tests for PySpark functions using the pytest framework, followed by integration testing for Databricks data pipelines with DLT and Workflows to ensure reliability.
The course also covers essential Git operations within Databricks, including using Databricks Git Folders to integrate continuous integration practices. Finally, you will take a high level look at various deployment methods for Databricks assets, such as REST API, CLI, SDK, and Databricks Asset Bundles (DABs), providing you with the knowledge of techniques to deploy and manage your pipelines.
By the end of the course, you will be proficient in software engineering and DevOps best practices, enabling you to build scalable, maintainable, and efficient data engineering solutions.
Languages Available: English | 日本語 | Português BR | 한국어 | Español
1. Data Ingestion with Lakeflow Connect
⇾ Basic understanding of the Databricks Data Intelligence platform, including Databricks Workspaces, Apache Spark, Delta Lake, the Medallion Architecture and Unity Catalog.
⇾ Experience working with various file formats (e.g., Parquet, CSV, JSON, TXT).
⇾ Proficiency in SQL and Python.
⇾ Familiarity with running code in Databricks notebooks.
2. Deploy Workloads with Lakeflow Jobs
⇾ Beginner familiarity with basic cloud concepts (virtual machines, object storage, identity management)
⇾ Ability to perform basic code development tasks (create compute, run code in notebooks, use basic notebook operations, import repos from git, etc.)
⇾ Intermediate familiarity with basic SQL concepts (CREATE, SELECT, INSERT, UPDATE, DELETE, WHILE, GROUP BY, JOIN, etc.)
3. Build Data Pipelines with Lakeflow Spark Declarative Pipelines
⇾ Basic understanding of the Databricks Data Intelligence platform, including Databricks Workspaces, Apache Spark, Delta Lake, the Medallion Architecture and Unity Catalog.
⇾ Experience ingesting raw data into Delta tables, including using the read_files SQL function to load formats like CSV, JSON, TXT, and Parquet.
⇾ Proficiency in transforming data using SQL, including writing intermediate-level queries and a basic understanding of SQL joins.
4. DevOps Essentials for Data Engineering
⇾ Proficient knowledge of the Databricks platform, including experience with Databricks Workspaces, Apache Spark, Delta Lake and the Medallion Architecture, Unity Catalog, Delta Live Tables, and Workflows. A basic understanding of Git version control is also required.
⇾ Experience ingesting and transforming data, with proficiency in PySpark for data processing and DataFrame manipulations. Additionally, candidates should have experience writing intermediate level SQL queries for data analysis and transformation.
⇾ Knowledge of Python programming, with proficiency in writing intermediate level Python code, including the ability to design and implement functions and classes. Users should also be skilled in creating, importing, and effectively utilizing Python packages.
Outline
1. Data Ingestion with Lakeflow Connect
⇾ Introduction to Data Engineering in Databricks
⇾ Cloud Storage Ingestion with LakeFlow Connect Standard Connector
⇾ Enterprise Data Ingestion with LakeFlow Connect Managed Connectors
⇾ Ingestion Alternatives
2. Deploy Workloads with Lakeflow Jobs
⇾ Introduction to Data Engineering in Databricks
⇾ Lakeflow Jobs Core Concepts
⇾ Creating and Scheduling Jobs
⇾ Advance Lakeflow Jobs Features
3. Build Data Pipelines with Lakeflow Spark Declarative Pipelines
⇾ Introduction to Data Engineering in Databricks
⇾ Lakeflow Spark Declarative Pipeline Fundamentals
⇾ Building Lakeflow Spark Declarative Pipelines
4. DevOps Essentials for Data Engineering
⇾ Introduction to Software Engineering (SWE) Best Practices
⇾ Introduction to Modularizing PySpark Code
⇾ Demo: Modularizing PySpark Code - REQUIRED
⇾ Lab: Modularize PySpark Code
⇾ DevOps Fundamentals
⇾ The Role of CI/CD in DevOps
⇾ Knowledge Check/Discussion
⇾ Planning the Project
⇾ Demo: Project Setup Exploration (Required)
⇾ Introduction to Unit Tests for PySpark
⇾ Demo: Creating and Executing Unit Tests
⇾ Lab: Create and Execute Unit Tests
⇾ Executing Integration Tests with DLT and Workflows
⇾ Demo: Performing Integration Tests with DLT and Workflows
⇾ Version Control with Git Overview
⇾ Lab: Version Control with Databricks Git Folders and GitHub
⇾ Deplyoying Databricks Assets Overview
⇾ Demo: Deploying the Databricks Project
Upcoming Public Classes
Date | Time | Language | Price |
|---|---|---|---|
Dec 04 - 05 | 09 AM - 05 PM (Europe/Paris) | English | $1500.00 |
Dec 04 - 05 | 09 AM - 05 PM (America/New_York) | English | $1500.00 |
Dec 15 - 18 | 02 PM - 06 PM (America/New_York) | English | $1500.00 |
Jan 08 - 09 | 09 AM - 05 PM (Europe/Paris) | English | $1500.00 |
Jan 13 - 16 | 11 AM - 03 PM (Asia/Singapore) | English | $1500.00 |
Jan 13 - 16 | 02 PM - 06 PM (America/New_York) | English | $1500.00 |
Jan 19 - 20 | 09 AM - 05 PM (Europe/London) | English | $1500.00 |
Public Class Registration
If your company has purchased success credits or has a learning subscription, please fill out the Training Request form. Otherwise, you can register below.
Private Class Request
If your company is interested in private training, please submit a request.
Registration options
Databricks has a delivery method for wherever you are on your learning journey
Self-Paced
Custom-fit learning paths for data, analytics, and AI roles and career paths through on-demand videos
Register nowInstructor-Led
Public and private courses taught by expert instructors across half-day to two-day courses
Register nowBlended Learning
Self-paced and weekly instructor-led sessions for every style of learner to optimize course completion and knowledge retention. Go to Subscriptions Catalog tab to purchase
Purchase nowSkills@Scale
Comprehensive training offering for large scale customers that includes learning elements for every style of learning. Inquire with your account executive for details

