This commit is contained in:
Pablo Martin 2023-10-30 16:19:14 +01:00
parent 1c813ce38e
commit 81d13ea2d6
3 changed files with 7 additions and 4 deletions

View file

@ -25,6 +25,7 @@ dbtlearn:
Once you have set this up and the database as well, you can run `dbt debug` to ensure everything is set up correctly and dbt can reach the database. Once you have set this up and the database as well, you can run `dbt debug` to ensure everything is set up correctly and dbt can reach the database.
You should also delete the lines under the `dbtlearn` key in the `dbt_project.yml` file.
# DBT noisy things below # DBT noisy things below

View file

@ -32,6 +32,3 @@ clean-targets: # directories to be removed by `dbt clean`
# files using the `{{ config(...) }}` macro. # files using the `{{ config(...) }}` macro.
models: models:
dbtlearn: dbtlearn:
# Config indicated by + and applies to all files under models/example/
example:
+materialized: view

View file

@ -87,7 +87,7 @@ dbt makes sense nowadays because the modern data stack makes transformations wit
- Intermediate approach between SCD2 and SCD1 - Intermediate approach between SCD2 and SCD1
## dbtw overview ## dbt overview
- dbt takes care of the T in ETL/ELT. - dbt takes care of the T in ETL/ELT.
- dbt works within the datawarehouse and with SQL. - dbt works within the datawarehouse and with SQL.
@ -99,3 +99,8 @@ dbt makes sense nowadays because the modern data stack makes transformations wit
- Data from insideairbnb.com/berlin/ - Data from insideairbnb.com/berlin/
- The project will use snowflake as a DWH and preset (managed superset) as a BI tool. - The project will use snowflake as a DWH and preset (managed superset) as a BI tool.
## dbt project structure
- `dbt_project.yml`: header of the project, with stuff like versioning, the default profile for the project, the paths to different folders, etc.