Skip to content

Latest commit

 

History

History
 
 

week_4_analytics_engineering

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Week 4: Analytics Engineering

Goal: Transforming the data loaded in DWH to Analytical Views developing a dbt project. Slides

Prerequisites

We will build a project using dbt and a running data warehouse. By this stage of the course you should have already:

  • A running warehouse (BigQuery or postgres)
  • A set of running pipelines ingesting the project dataset (week 3 completed): Datasets list
    • Yellow taxi data - Years 2019 and 2020
    • Green taxi data - Years 2019 and 2020
    • fhv data - Year 2019.

Note:

  • A quick hack has been shared to load that data quicker, check instructions in week3/extras
  • If you recieve an error stating "Permission denied while globbing file pattern." when attemting to run fact_trips.sql this video may be helpful in resolving the issue

🎥 Video

Setting up dbt for using BigQuery (Alternative A - preferred)

You will need to create a dbt cloud account using this link and connect to your warehouse following these instructions. More detailed instructions in dbt_cloud_setup.md

Optional: If you feel more comfortable developing locally you could use a local installation of dbt as well. You can follow the official dbt documentation or follow the dbt with BigQuery on Docker guide to setup dbt locally on docker. You will need to install the latest version (1.0) with the BigQuery adapter (dbt-bigquery).

Setting up dbt for using Postgres locally (Alternative B)

As an alternative to the cloud, that require to have a cloud database, you will be able to run the project installing dbt locally. You can follow the official dbt documentation or use a docker image from oficial dbt repo. You will need to install the latest version (1.0) with the postgres adapter (dbt-postgres). After local installation you will have to set up the connection to PG in the profiles.yml, you can find the templates here

Content

Introduction to analytics engineering

  • What is analytics engineering?
  • ETL vs ELT
  • Data modeling concepts (fact and dim tables)

🎥 Video

What is dbt?

  • Intro to dbt

🎥 Video

Starting a dbt project

Alternative a: Using BigQuery + dbt cloud

  • Starting a new project with dbt init (dbt cloud and core)
  • dbt cloud setup
  • project.yml

🎥 Video

Alternative b: Using Postgres + dbt core (locally)

  • Starting a new project with dbt init (dbt cloud and core)
  • dbt core local setup
  • profiles.yml
  • project.yml

🎥 Video

Development of dbt models

  • Anatomy of a dbt model: written code vs compiled Sources
  • Materialisations: table, view, incremental, ephemeral
  • Seeds, sources and ref
  • Jinja and Macros
  • Packages
  • Variables

🎥 Video

Note: This video is shown entirely on dbt cloud IDE but the same steps can be followed locally on the IDE of your choice

Testing and documenting dbt models

  • Tests
  • Documentation

🎥 Video

Note: This video is shown entirely on dbt cloud IDE but the same steps can be followed locally on the IDE of your choice

Deploying a dbt project

Alternative a: Using BigQuery + dbt cloud

  • Deployment: development environment vs production
  • dbt cloud: scheduler, sources and hosted documentation

🎥 Video

Alternative b: Using Postgres + dbt core (locally)

  • Deployment: development environment vs production
  • dbt cloud: scheduler, sources and hosted documentation

🎥 Video

Visualising the transformed data

🎥 Google data studio Video

🎥 Metabase Video

Advanced knowledge:

Workshop: Maximizing Confidence in Your Data Model Changes with dbt and PipeRider

To learn how to use PipeRider together with dbt for detecting changes in model and data, sign up for a workshop here

More details

Community notes

Did you take notes? You can share them here.

Useful links