Transformation: dbt
Overview
How It Works
Infrastructure Components
Project Structure
pipelines/
├── transform/ # dbt project root
│ ├── Dockerfile
│ ├── dbt_project.yml # dbt project configuration
│ ├── sources/
│ │ ├──<source_name>.yml # List all landing tables for a source
│ ├── models/
│ │ ├── staging/ # Staging models (first transformation layer)
│ │ └── mart/ # Final business-ready models
│ └── ...
└── ecs_task_dbt.tf # Terraform creating the ECS taskData Transformation Flow
Sources
Models Structure
Development Guide
Option 1: Execute dbt Locally
Option 2: Execute in AWS ECS Fargate
Deployment
Common Commands
Resources
Last updated