using-dbt-state

작성자: dbt-labs

사용자가 dbt State(노드를 복제하거나 건너뛰는 서버 기반 재사용 메커니즘)를 활성화, 구성, 최적화 또는 디버깅할 때 사용합니다.

npx skills add https://github.com/dbt-labs/dbt-agent-skills --skill using-dbt-state

Using dbt State

dbt State is a server-backed reuse mechanism. It should not be conflated with dbt's state:modified selector or --state deferral.

Before building each selected node, dbt asks the dbt State server whether the object can be skipped (reuse from the target schema), cloned (reuse from another schema), or must be built. It is the successor to State-Aware Orchestration, but works in dbt Core, in development, and in CI — not just Fusion in production.

dbt State is a paid product, but it does not require a dbt platform (fka dbt Cloud) subscription.

Common Misconceptions

MisconceptionReality
"dbt State is just state:modified / --state"No. state:modified hashes file contents against a manifest you manage (and must keep fresh — e.g. via dbt parse or similar) and rebuilds state:modified+ (all descendants). dbt State manages state automatically on a server and does not require maintaining a fresh comparison manifest — it parses SQL into a syntax tree and compares semantic hashes, considers upstream data freshness, and rebuilds a descendant only if it actually depends on the change (not the whole + subtree).
"It's Fusion-only / production-only"Works in dbt Core, the dbt platform, and Fusion, across dev, CI, and production, with any orchestrator.
"dbt Core users can't use it"They can. dbt Core 1.7–1.11 require pip install dbt-state. It's baked into dbt Core 1.12 / v2.0 and Fusion.
"It's free / it's local"It calls the dbt State server and requires authentication via a dbt platform account or a standalone dbt State account (app.state.dbt.com). Reuse is metered in DATTs — daily active target tables (see Billing below).
"It sends my data to dbt Labs"It sends last-modified timestamps and SQL text. The SQL is hashed then discarded — dbt Labs cannot read query contents after hashing, and can never access raw data.

How the reuse decision works

For each selected node, dbt State picks the cheapest valid option:

  1. Skip — object exists in the target schema, its semantic hash is unchanged, and no parent has fresher data beyond lag_tolerance. Does nothing.
  2. Clone — a matching object (same hash, fresh data) exists in another schema (e.g. production, or a teammate's dev schema). Clones it, marked Reused. Uses zero-copy clone if supported by the warehouse, or runs a CTAS statement to copy the transformed data from elsewhere if not. Test results are reused too — a failing test still surfaces even though it wasn't re-executed.
  3. Build — no valid reuse. Builds normally, auto-deferring unselected upstream nodes.

If a node is selected for execution but its inputs do not exist in the target schema, dbt State uses deferral as normal. If a manifest.json is present it will use that, otherwise it will make a best-effort guess at the correct FQN based on the generate_*_name macros. Deferral does not consume DATTs. The defer_to_target config in profiles.yml can be used to specify which schema to defer to for self-managed users. It is not necessary for dbt platform users.

To get freshness, dbt fetches warehouse metadata (or loaded_at_field/loaded_at_query) for each input relation. For views without a loaded_at config, it traverses upstream until it finds a real table.

Query normalization & why models rebuild

dbt State hashes a parsed syntax tree, so it ignores cosmetic changes — whitespace, comments, table aliases, dbt lint --fix reformatting. A model rebuilds only when its logic or data changes.

Volatile SQL (current_timestamp(), getdate(), random()): by default treated as logic — the hash uses the function name, not its runtime value, so it does not invalidate the model every run (otherwise nothing downstream of getdate() could ever be reused). To make a model rebuild when the value changes:

  • Set evaluate_volatile_sql: true (preferred — covers all functions in the model, inheritable like any config). dbt State emulates the function's value into the hash.
  • Or use a Jinja equivalent (e.g. {{ run_started_at }}) — Jinja renders before parsing, so it changes the compiled SQL each run.

Non-deterministic Jinja (e.g. dbt_utils.get_relations_by_pattern returning relations in varying order) produces a different compiled hash and triggers rebuilds even when logic is unchanged.

Config changes: only build-relevant configs affect the hash (materialized, on_schema_change, severity, …). Cosmetic configs (meta, tags) are ignored. If a post-hook mutates tables based on ignored fields (e.g. applying meta as warehouse tags), set execute_hooks_on_any_reuse: true so hooks run on reuse.

Configs quick reference

Set under models: +state: in dbt_project.yml, in schema.yml config.state, or in {{ config(state={...}) }}.

ConfigDefaultPurpose
lag_tolerance45mHow stale data may be before a node is eligible to rebuild. Data freshness only — SQL changes rebuild regardless.
require_fresh_data_fromanyWhether any or all direct parents need fresh data to trigger a rebuild.
evaluate_volatile_sqlfalseHash the runtime value of volatile functions instead of the name.
pre_cloneif_missingPre-populate incremental models/snapshots by cloning prod before a run (never / if_missing / always).
execute_hooks_on_any_reusefalseRun pre/post-hooks even when a node is reused.
defer_to_targetprod(Self-managed only, profile) Which profile target to defer/clone from.
metadata_warehouseprofile warehouse(Snowflake only, profile) Separate warehouse for metadata lookups.

Supported warehouses: Snowflake, Databricks, BigQuery, Redshift.

Billing: daily active target tables (DATT)

dbt State usage is metered in DATTs (daily active target tables), not by "models built".

  • A target table is a database object managed by your project (per database + schema): seeds, snapshots, models (incl. incremental), and each distinct test — even tests not stored in the database (store_failures off). Example: dim_customers with not_null and unique on id = 3 target tables (the model + 2 tests).
  • A target table becomes a DATT when dbt State performs at least one skip, clone, or test reuse on it on a given day (UTC). All reuses of the same target table in one day count as a single DATT. A full build is not a reuse.
  • Views are never billed as DATTs, even if reused or cloned. Tests attached to a view will be billed as normal.

If asked about pricing details, refer the user to https://www.getdbt.com/product/dbt-state.

Optimizations for best results

  • lag_tolerance per environment — in dev, set it high (e.g. a week) so dbt does nothing when data is only slightly stale; cloning is cheap but doing nothing is cheaper. Example:
    # dbt_project.yml
    models:
      +state:
        lag_tolerance: "{{ '4h' if target.name == 'prod' else '7d' }}"
    
  • Keep using selectors in development. Any target table dbt State reuses counts as a DATT for that day (even one inside its lag-tolerance window). Select only the nodes you're working on so plain deferral handles the rest — untouched, unselected nodes incur no dbt State usage.
  • Reduce complex selector usage in production. dbt State makes most jobs collapse toward plain dbt build; let it decide what to rebuild instead of hand-tuning per-job selection. Specify lag_tolerance to prevent overbuilding.
  • Specify columns instead of select * to increase likelihood of reuse. If dbt State can't prove a table.* or similar has the same column set, it will rebuild to be sure. This is particularly relevant for views. Fusion's static analysis is not currently used for this.

Diagnosing confusing behavior

SymptomCause / fix
A model with current_timestamp() keeps rebuildingLikely evaluate_volatile_sql: true somewhere, or a Jinja value (e.g. run_started_at) changing the compiled SQL. If you want reuse, leave volatile SQL as default (logic).
Model rebuilds despite "no change"Cosmetic change isn't the cause (those are normalized away). Look for non-deterministic Jinja (unordered macro output), a build-relevant config change, or fresher upstream data past lag_tolerance. Metadata tables can consider a table modified by an insert command even if no new rows were added. Consider using loaded_at_field, but this may be more costly in the warehouse - metadata queries are often free but loaded_at_field will be a standard paid query.
Post-hooks didn't run on a reused modelHooks don't run on reuse by default — set execute_hooks_on_any_reuse: true.
Want to know why a node was reused/rebuiltUse the dbt-state explain command (dbt v1.7–1.12) to inspect the decision.
Need authentication / accessLog in via your dbt platform account or a standalone dbt State account. For an org, set state-org-id under dbt-cloud: in dbt_project.yml.

v1 (Python) vs v2 (Rust/Fusion)

dbt Core 1.7–1.11dbt Core 1.12 / v2.0Fusion
Installpip install dbt-state requiredBuilt inBuilt in
  • dbt v1.7-1.11 users must install the separate dbt-state package to use dbt State.
  • dbt v1.12+ users have the dbt-state package included automatically.
  • dbt v2.0+ (either Core or Fusion distributions) have the Rust implementation of the client logic built in, so no separate install is needed.

The reuse behavior, configs, and query normalization are server-side and behave consistently across all engines. The main v1 difference is the separate dbt-state install for 1.7–1.11. The dbt-state explain diagnostic is not available in dbt v2.

Related docs

  • Overview: /docs/deploy/dbt-state-about
  • Setup: /docs/deploy/dbt-state-setup · Examples: /docs/deploy/dbt-state-examples
  • Monitor activity: /docs/deploy/dbt-state-interface · Deferral: /docs/deploy/dbt-state-deferral · CI/CD: /docs/deploy/dbt-state-cicd
  • Configs: /reference/resource-configs/dbt-state-configs · lag_tolerance · defer_to_target

dbt-labs의 다른 스킬

answering-natural-language-questions-with-dbt
dbt-labs
데이터 웨어하우스에 대해 dbt의 시맨틱 레이어 또는 임시 SQL을 사용하여 SQL 쿼리를 작성 및 실행하고 비즈니스 질문에 답변합니다. 사용자가 ~에 대해 질문할 때 사용하세요.
official
adding-dbt-unit-test
dbt-labs
업스트림 모델 입력을 모킹하고 예상 출력을 검증하는 단위 테스트 YAML 정의를 생성합니다. dbt 모델에 단위 테스트를 추가하거나 연습할 때 사용하세요...
official
building-dbt-semantic-layer
dbt-labs
dbt Semantic Layer 구성 요소(시맨틱 모델, 메트릭, 차원, 엔티티, 측정값, 타임 스파인)를 생성하거나 수정할 때 사용합니다. MetricFlow를 다룹니다…
official
configuring-dbt-mcp-server
dbt-labs
dbt용 MCP 서버 설정 JSON을 생성하고, 인증 설정을 해결하며, 서버 연결을 검증합니다. dbt를 설정, 구성하거나…할 때 사용하세요.
official
creating-mermaid-dbt-dag
dbt-labs
MCP 도구, manifest.json 또는 직접 코드 파싱을 대체 수단으로 사용하여 dbt 모델 계보의 Mermaid 플로우차트 다이어그램을 생성합니다. dbt 모델 시각화 시 사용합니다.
official
migrating-dbt-core-to-fusion
dbt-labs
Use when a user needs help triaging dbt-core to Fusion migration errors. Runs dbt-autofix first, then classifies remaining errors into actionable categories…
official
migrating-dbt-project-across-platforms
dbt-labs
Use when migrating a dbt project from one data platform or data warehouse to another (e.g., Snowflake to Databricks, Databricks to Snowflake) using dbt…
official
running-dbt-commands
dbt-labs
dbt CLI 명령을 형식화하고 실행하며, 올바른 dbt 실행 파일을 선택하고 명령 매개변수를 구성합니다. 모델, 테스트, 빌드, 컴파일 등을 실행할 때 사용합니다.
official