Skip to content

Commit

Permalink
Merge pull request #10 from stewartbryson/stewart
Browse files Browse the repository at this point in the history
Notebook for walkthrough. Dynamic tables.
  • Loading branch information
stewartbryson committed Nov 28, 2023
2 parents 7f5e3cb + 830b686 commit 5757fa5
Show file tree
Hide file tree
Showing 13 changed files with 1,027 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ credentials.properties
credentials.json
.java-version
.vscode/
__pycache__/
__pycache__/
.DS_Store
.ipynb_checkpoints/
12 changes: 9 additions & 3 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,19 @@ models:
+materialized: view
bronze:
+schema: bronze
+materialized: table
+materialized: dynamic_table
+snowflake_warehouse: tpcdi_large
+target_lag: downstream
silver:
+schema: silver
+materialized: table
+materialized: dynamic_table
+snowflake_warehouse: tpcdi_large
+target_lag: '10 minutes'
gold:
+schema: gold
+materialized: table
+materialized: dynamic_table
+snowflake_warehouse: tpcdi_large
+target_lag: '20 minutes'
work:
+schema: work
+materialized: ephemeral
Loading

0 comments on commit 5757fa5

Please sign in to comment.