How do I orchestrate dbt models without Airflow?
Run your dbt project as part of a Bruin pipeline. Bruin resolves dependencies and schedules the run, so you get orchestration for dbt models without standing up and operating Airflow.
Command
bruin runDefined in
YAML + SQL
Works with
dbt + Bruin CLI
What you get
dbt in a pipelinedependency-aware runsscheduling without Airflow
How it works in code
/* @bruin
name: run_dbt
type: dbt
dbt:
project_dir: ./dbt
@bruin */Run bruin run and Bruin orchestrates the dbt run in dependency order.
Related use cases
Orchestration and scheduling
Orchestrate a pipeline without Airflow
Can I orchestrate SQL and Python steps without standing up Airflow?
Orchestration and schedulingSchedule a pipeline to run daily
How do I schedule a Bruin pipeline to run on a cadence?
Orchestration and schedulingDefine dependencies between assets
How do I declare that one model depends on another?
SQL and Python, one pipeline
Open source. Define assets, declare dependencies, run the graph with bruin run.