dbt
Add host/port to the Snowflake target in profiles.yml:
my_project:
target: prod
outputs:
prod:
type: snowflake
account: abc12345.eu-west-2.aws
user: svc_dbt
private_key_path: /secrets/rsa_key.p8
warehouse: TRANSFORM_WH
host: chukei.internal.example.com # ← the change
port: 8443
What you get
- Per-model attribution: chukei's attribute plugin parses dbt's query
metadata, so the savings ledger and metrics break spend down by dbt
model — no
query_tagdiscipline needed. - CI caching and coalescing: identical compile/validation queries across CI runs are served from cache or coalesced into one execution.
- Suspend suggestions for transform warehouses idling between runs.