How to load dbt source description and metadata into Dagster #16470
-
I have successfully integrated a dbt model into Dagster. Description and metadata are correctly pulled in by Dagster for my tables and visible both in the graph (the description) and the corresponding asset detail pages . However, My dummy dbt
More specifically:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Details like description and column metadata are not automatically pulled in for dbt sources. By default, Dagster only takes the dbt source's asset key and displays it in the asset graph. If you'd like these details to be visible for a dbt source, then you should:
References |
Beta Was this translation helpful? Give feedback.
Details like description and column metadata are not automatically pulled in for dbt sources. By default, Dagster only takes the dbt source's asset key and displays it in the asset graph.
If you'd like these details to be visible for a dbt source, then you should:
@asset
or@multi_asset
)References