-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbt_project.yml
More file actions
59 lines (46 loc) · 1.35 KB
/
dbt_project.yml
File metadata and controls
59 lines (46 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: "tikal_dbt"
version: "1.0.0"
config-version: 2
profile: "tikal_dbt"
test-paths: ["tests"]
snapshot-paths: ["snapshots"]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
dispatch:
- macro_namespace: dbt
search_order:
- tikal_dbt
- dbt
vars:
organization_id: "{{ env_var('ORG_ID', '2f2e4840-a901-424a-ba56-4404b64acb87') }}"
job_id: c8b38a6b-887c-4777-a413-6c68bfa46f80 #for local build
scoring_job_id: bc7b0139-84df-4062-be45-9fca853a4645 #for local build
instance_id: 46f1603d-b625-4c04-b99d-fdfc1592f196
source_database: "SAAS_STAGING"
marts_extension: "_marts"
staging_extension: "_staging"
staging_fqn: "staging"
marts_fqn: "marts"
staging_table_part: "_stg"
package_name: "tikal_dbt"
enable_separate_db: False
models:
dbt_bigquery_monitoring:
+schema: "dbt_bigquery_monitoring"
+tags:
- bigquery_monitoring
elementary:
## elementary models will be created in the schema '<your_schema>_elementary'
+schema: "elementary"
+tags:
- elementary
## To disable elementary for dev, uncomment this:
# enabled: "{{ target.name in ['prod','analytics'] }}"
tikal_dbt:
#for incremental models
+on_schema_change: "sync_all_columns"
flags:
require_explicit_package_overrides_for_builtin_materializations: False
source_freshness_run_project_hooks: True