Skip to content

Commit 5757fa5

Browse files
Merge pull request #10 from stewartbryson/stewart
Notebook for walkthrough. Dynamic tables.
2 parents 7f5e3cb + 830b686 commit 5757fa5

13 files changed

+1027
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ credentials.properties
66
credentials.json
77
.java-version
88
.vscode/
9-
__pycache__/
9+
__pycache__/
10+
.DS_Store
11+
.ipynb_checkpoints/

dbt_project.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,19 @@ models:
3232
+materialized: view
3333
bronze:
3434
+schema: bronze
35-
+materialized: table
35+
+materialized: dynamic_table
36+
+snowflake_warehouse: tpcdi_large
37+
+target_lag: downstream
3638
silver:
3739
+schema: silver
38-
+materialized: table
40+
+materialized: dynamic_table
41+
+snowflake_warehouse: tpcdi_large
42+
+target_lag: '10 minutes'
3943
gold:
4044
+schema: gold
41-
+materialized: table
45+
+materialized: dynamic_table
46+
+snowflake_warehouse: tpcdi_large
47+
+target_lag: '20 minutes'
4248
work:
4349
+schema: work
4450
+materialized: ephemeral

0 commit comments

Comments
 (0)