I want an asset to depend on and load in a dbt model after its materialized #17958
-
Hi all - I’m trying to use a dbt-generated asset to create a Python one. I’m following <https://github.com/dagster-io/dagster/blob/8978f184b8b041e7f37fbdd886a1800d27fc87a2/examples/assets_dbt_python/assets_dbt_python/assets/forecasting/__init__.py#L20|this example>, and here is a snippet:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You are missing an IO manager for your dbt assets: dagster/examples/assets_dbt_python/assets_dbt_python/__init__.py Lines 36 to 37 in 8978f18 IO managers allow you to load assets as in-memory representations for downstream computations. See the docs for more details. |
Beta Was this translation helpful? Give feedback.
You are missing an IO manager for your dbt assets:
dagster/examples/assets_dbt_python/assets_dbt_python/__init__.py
Lines 36 to 37 in 8978f18
IO managers allow you to load assets as in-memory representations for downstream computations. See the docs for more details.