From 41f83d436ba571ac3b71fd4e077f67ecd4f4aa9a Mon Sep 17 00:00:00 2001 From: Rex Ledesma Date: Mon, 4 Mar 2024 12:37:42 -0500 Subject: [PATCH] docs(dbt): display required version constraints to emit column schema metadata (#20240) ## Summary & Motivation As the title. ## How I Tested These Changes read --- docs/content/integrations/dbt/reference.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/content/integrations/dbt/reference.mdx b/docs/content/integrations/dbt/reference.mdx index 7eff67ad9a8b2..e3c8ccb2eae3b 100644 --- a/docs/content/integrations/dbt/reference.mdx +++ b/docs/content/integrations/dbt/reference.mdx @@ -534,6 +534,15 @@ def my_dbt_assets(context: AssetExecutionContext, dbt: DbtCliResource): ## Emit column schema as materialization metadata + + + Emitting column schema as materialization metadata is currently an + experimental feature.{" "} + {" "} + To use this feature, you'll need to be on at least `dagster==1.6.6` and + `dagster-dbt==0.22.6`. + + Dagster allows you to emit column schema [materialization metadata](/concepts/assets/software-defined-assets#recording-materialization-metadata), which includes the column names and data types of your materialized dbt models, seeds, and snapshots. With this metadata, you can view documentation in Dagster for all columns, not just columns described in your dbt project.