├── .gitignore ├── README.md ├── analysis └── .gitkeep ├── azure-build-pipeline-dev.yml ├── data ├── .gitkeep ├── raw_customers.csv ├── raw_orders.csv └── raw_payments.csv ├── dbt_project.yml ├── macros └── .gitkeep ├── models ├── example │ ├── my_first_dbt_model.sql │ ├── my_second_dbt_model.sql │ └── schema.yml ├── marts │ └── core │ │ ├── dim_customers.sql │ │ ├── docs.md │ │ ├── fct_orders.sql │ │ ├── intermediate │ │ ├── customer_orders.sql │ │ ├── customer_payments.sql │ │ └── order_payments.sql │ │ └── schema.yml ├── overview.md └── staging │ ├── schema.yml │ ├── stg_customers.sql │ ├── stg_orders.sql │ └── stg_payments.sql ├── profile_example.yml ├── snapshots └── .gitkeep └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/README.md -------------------------------------------------------------------------------- /analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-build-pipeline-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/azure-build-pipeline-dev.yml -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw_customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/data/raw_customers.csv -------------------------------------------------------------------------------- /data/raw_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/data/raw_orders.csv -------------------------------------------------------------------------------- /data/raw_payments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/data/raw_payments.csv -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/example/my_first_dbt_model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/example/my_first_dbt_model.sql -------------------------------------------------------------------------------- /models/example/my_second_dbt_model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/example/my_second_dbt_model.sql -------------------------------------------------------------------------------- /models/example/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/example/schema.yml -------------------------------------------------------------------------------- /models/marts/core/dim_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/dim_customers.sql -------------------------------------------------------------------------------- /models/marts/core/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/docs.md -------------------------------------------------------------------------------- /models/marts/core/fct_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/fct_orders.sql -------------------------------------------------------------------------------- /models/marts/core/intermediate/customer_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/intermediate/customer_orders.sql -------------------------------------------------------------------------------- /models/marts/core/intermediate/customer_payments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/intermediate/customer_payments.sql -------------------------------------------------------------------------------- /models/marts/core/intermediate/order_payments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/intermediate/order_payments.sql -------------------------------------------------------------------------------- /models/marts/core/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/marts/core/schema.yml -------------------------------------------------------------------------------- /models/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/overview.md -------------------------------------------------------------------------------- /models/staging/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/staging/schema.yml -------------------------------------------------------------------------------- /models/staging/stg_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/staging/stg_customers.sql -------------------------------------------------------------------------------- /models/staging/stg_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/staging/stg_orders.sql -------------------------------------------------------------------------------- /models/staging/stg_payments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/models/staging/stg_payments.sql -------------------------------------------------------------------------------- /profile_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdasm/dbt-databricks-demo/HEAD/profile_example.yml -------------------------------------------------------------------------------- /snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------