最新消息:请大家多多支持

Mastering Dbt (Data Build Tool) – From Beginner To Pro

其他教程 dsgsd 51浏览 0评论
Mastering Dbt (Data Build Tool) - From Beginner To Pro

Last updated 6/2023
MP4 | Video: h264, 1280×720 | Audio: AAC, 44.1 KHz
Language: English | Size: 4.17 GB | Duration: 7h 1m

Hands-on Analytics Engineering Bootcamp Including Theory, Building a dbt Project from Scratch, & Deploying to dbt Cloud

What you’ll learn
How to build a complete dbt project from scratch
The main benefits of dbt, and a bit of background as to how it came about
All of the dbt fundamentals: sources, models, tests, documentation, snapshots, seeds, macros, hooks, and operations
How to structure a dbt project: staging, intermediate, and mart models – and naming conventions
How to version control changes to your code with GitHub and VSCode
Advanced dbt testing – creating your own custom singular & generic tests, setting severity, and setting warn/error thresholds
Advanced dbt data modelling – including incremental and ephemeral models and what type to use (& when)
Advanced dbt commands – how to use different selectors, different profiles, tags, indirect test selection and building a local dbt documents site
Advanced dbt jinja & macros – creating your own macros to use in hooks / functions / operations, using jinja for loops and variables, and the target function
How to deploy your project on dbt Cloud, how to use the dbt Cloud UI, and using environment variables
How to use tests & macros from external packages to supercharge your dbt project
Best practises to use when running a dbt project (based on lots of experience!)
How to create a complete setup for Mac or Windows: installing all of the tools and getting a dbt specific VSCode setup!

Requirements
Basic SQL
No Python experience needed
Mac / Windows machine which is capable of installing Python, Git, and VSCode (we’ll run through all of this in the course!)

Description
A complete course to help anyone with basic SQL skills learn advanced dbt, a key tool for Analytics Engineering!Welcome to the 2023 Mastering dbt (data build tool) course! This course runs through everything from the theory behind dbt to building an advanced dbt project (from scratch) and deploying it on dbt Cloud.I have over 7 years of experience across Analytics / Analytics Engineering / Data Science, including 4 years using dbt on a daily basis. I was also involved in the rollout of dbt in my time at Monzo Bank! In this course I’ve taken everything I’ve learnt over the past 4 years, and what I use on a daily basis, and condensed it to take anyone who knows SQL to an advanced level of dbt as quickly as possible.COURSE UPDATES:April 2023: More content added for setup using PowerShell (Windows)May 2023: New content – dbt version 1.5 (released April 2023)June 2023: Added overview & recap lectures to all sections to reinforce what we’ve learnedMY APPROACH TO THIS COURSE:We’ll cover everything you need to know about dbt: from the basic data modelling right through to all of the advanced features such as creating custom tests and macros. We’ll be doing this step by step, and build from the basics upwards.It’s focused on practical outcomes – we won’t be spending ages on database theory, or going into lots of detail on the eCommerce dataset we’ll be using, instead we’ll be aiming to get you up to advanced dbt levels as quickly as possible.For every video where we’re writing code, I’ve created lesson attachments with the final outputs. This means you can either code as you go along, or watch the videos and look at the handouts afterwards! I’ve also included some theory with these handouts to help hammer home the points made in the videos.There’s also a public GitHub repository (which you’ll be using for this course) that contains a model final project you can reference throughout.This course isn’t static! I’d love to hear your feedback and will be updating this course on an ongoing basis.COURSE STRUCTURE:This course focuses on first getting a good understanding of what problems dbt solves, then building a basic dbt project, before layering on more advanced concepts and finally deploying our project with dbt Cloud.IntroductionSome theory (<1 hour) around dbt, what problems existed in the data stack before it came along, and how it solves them.Tool setupGetting set up with Python, GitHub, Google BigQuery, VSCode, and of course dbt! If you’re familiar with any of these tools already then you are more than welcome to skip the appropriate lessons.We’ll also be exploring the fictional eCommerce dataset that we’ll be using throughout the course.Building our basic dbt projectThis section focuses on creating our project from scratch, including how we will structure our project. We’ll be building out staging (stg), intermediate (int), and mart data models, including documentation & testing with the out-of-the-box dbt tests.Advanced dbt testingWe’ll start to build on our basic dbt project by setting test severity & thresholds, using the dbt-utils and dbt-expectations external packages for their excellent selection of tests, creating our own custom singular & generic tests, and testing the freshness of our source data.Advanced data modelling with dbtNext, we’ll be looking at how we can create reusable documentation, seed files (version controlled .csv files), snapshots (capturing changes to data tables), and materialisation methods.Most of this section will be focused on the last part – the materialisation methods: ephemeral, view, table, and incremental. By this point we’ll have encountered view & table models and we will be building both an incremental and an ephemeral model – and you will gain an understanding of what to use and when.[**NEW**] – This section also covers new content from dbt version 1.5: data contracts, model versions, and model access.Advanced dbt commandsThis section will focus less on changing our dbt project, but instead all of the major dbt commands and how (and when) to use them.Advanced Jinja & macrosThe final changes to our project will involve using Jinja – a core feature of dbt and arguably it’s most complex but powerful feature – and using it to create our own macros.This section will run through how you can use Jinja macros for hooks, operations, and as reusable functions in your SQL models. It’ll also run through some theory around Jinja, common mistakes, and what I (personally) find to be what it’s most useful for!dbt CloudFinally, we’ll be exploring how to take our project and deploy it on dbt Cloud – including how to schedule it to run on a regular basis. We’ll also be looking at dbt Cloud itself and its main benefits.

Overview
Section 1: Introduction

Lecture 1 Instructor Introduction

Lecture 2 Course outline

Lecture 3 Course Introduction

Lecture 4 A Brief History of the Data Stack

Lecture 5 Benefits of dbt – Inferring Dependencies

Lecture 6 Benefits of dbt – Documentation & Testing

Lecture 7 Benefits of dbt – Python-Like Functionality

Lecture 8 How dbt Has Solved a Lot of Problems in the Data Stack

Lecture 9 How dbt Fits in the Data Stack

Lecture 10 dbt Core vs. dbt Cloud

Lecture 11 Section Recap

Section 2: Getting Set Up with Your Tools

Lecture 12 Section Overview

Lecture 13 Help if you get stuck during this course

Lecture 14 Creating a Gmail Account

Lecture 15 Setting up a BigQuery Project With Billing

Lecture 16 (Optional) If You Have Issues With BigQuery Billing

Lecture 17 The BigQuery UI

Lecture 18 The Dataset You’ll Be Using

Lecture 19 (Mac) Installing Python 3.10

Lecture 20 (Windows) Installing Python 3.10

Lecture 21 Downloading VSCode and Setting Up Shortcuts

Lecture 22 Creating a GitHub account

Lecture 23 Forking Vs. Cloning

Lecture 24 Forking the Repository

Lecture 25 (Optional) If You Have Issues Syncing Your Forked Repository

Lecture 26 Installing the recommended VSCode Extensions

Lecture 27 What’s a Virtual Environment (venv)?

Lecture 28 Setting Up Our Virtual Environment and Installing Packages

Lecture 29 Setting Up dbt for BigQuery

Lecture 30 Trialling Our Model dbt Project

Lecture 31 (Optional) Setting Up dbt Autocomplete

Lecture 32 Run Through of How Our Final Project Will Look

Lecture 33 Section Recap

Section 3: Building the Basic dbt Project

Lecture 34 Section Overview

Lecture 35 The dbt init Command

Lecture 36 Version Control with GitHub

Lecture 37 Setting up dbt Power User

Lecture 38 How We’ll Structure Our Project

Lecture 39 Creating Our First Source (src) yml File

Lecture 40 (Windows) Issues with the dbt Power User extension

Lecture 41 Creating Our First Staging (stg) SQL Model

Lecture 42 Running Our First Staging (stg) SQL Model

Lecture 43 Creating Our First Model yml File

Lecture 44 Adding Tests to Our First Model yml File

Lecture 45 Setting Up Our Models to Materialise as Tables Instead of Views

Lecture 46 Getting the Rest of Our Staging (stg) SQL Models Set Up

Lecture 47 Using dbt clean to Get Table Materialisation Working

Lecture 48 Getting the Rest of the Staging (stg) yml Files Set Up

Lecture 49 Taking Stock of Our Staging (stg) Data Models

Lecture 50 The Target Folder

Lecture 51 Getting Our First Intermediate (int) SQL Model Set Up

Lecture 52 Getting Our First Intermediate (int) yml File Set Up

Lecture 53 Getting Our Mart SQL Model Set Up

Lecture 54 Getting Our Mart yml File Set Up

Lecture 55 Our Basic dbt Project Is Now Complete!

Lecture 56 Section Recap

Section 4: Advanced dbt: Testing

Lecture 57 Section Overview

Lecture 58 Setting Default Test Severity

Lecture 59 Setting Test Severity and Thresholds

Lecture 60 The External dbt Packages We’ll Be Using

Lecture 61 dbt_utils and dbt_expectations

Lecture 62 Custom Singular Tests

Lecture 63 Custom Generic Tests

Lecture 64 Applying Advanced Tests to Our Whole Project

Lecture 65 Source Freshness Tests

Lecture 66 Section Recap

Section 5: Advanced dbt: Data Modelling

Lecture 67 Section Overview

Lecture 68 The doc Function

Lecture 69 Seed Files

Lecture 70 dbt Snapshots

Lecture 71 Materialisation Types

Lecture 72 Materialisation: Ephemeral Models

Lecture 73 Materialisation: Incremental Models

Lecture 74 (Optional) Partitioning a Table in BigQuery

Lecture 75 [NEW] – Preview of dbt Core Version 1.5

Lecture 76 [NEW] – (Preview) Model Access

Lecture 77 [NEW] – (Preview) Data Contracts

Lecture 78 [NEW] – (Preview) Model Versions

Lecture 79 Section Recap

Section 6: Advanced dbt: Commands and Selectors

Lecture 80 Section Overview

Lecture 81 Commands For a Clean dbt run

Lecture 82 Using Different dbt Profiles

Lecture 83 Selectors

Lecture 84 Tags

Lecture 85 Indirect Test Selection

Lecture 86 dbt test With –warn-error

Lecture 87 dbt build

Lecture 88 dbt docs generate / serve

Lecture 89 Section Recap

Section 7: Advanced dbt: Jinja and Macros

Lecture 90 Section Overview

Lecture 91 Jinja Comments, Statements, and Expressions

Lecture 92 The 3 Types of Macro: Functions, Hooks, Operations

Lecture 93 (Optional) dbt Jinja Function Reference

Lecture 94 Macros: Operations

Lecture 95 Macros: Functions (Building a Basic Macro)

Lecture 96 Macros: Hooks

Lecture 97 Jinja Statements: for Loops and Setting Variables

Lecture 98 (Optional) Jinja: Using the Target Function

Lecture 99 Section Recap

Section 8: dbt Cloud

Lecture 100 Section Overview

Lecture 101 Creating a dbt Cloud Account

Lecture 102 Setting Up a Service Account

Lecture 103 Connecting GitHub to dbt Cloud

Lecture 104 The dbt Cloud IDE

Lecture 105 Deploying Jobs on dbt Cloud

Lecture 106 Section Recap

Data Analysts,Data Scientists,Analytics Engineers,Data Engineers,BI Professionals,Anyone interested in getting into data!


Password/解压密码www.tbtos.com

资源下载此资源仅限VIP下载,请先

转载请注明:0daytown » Mastering Dbt (Data Build Tool) – From Beginner To Pro

您必须 登录 才能发表评论!