upstream dependencies for dbt assets #20761
Replies: 1 comment 5 replies
-
Hi @brandybobandyistaken there isn't a way to do this right now. The |
Beta Was this translation helpful? Give feedback.
-
Hi @brandybobandyistaken there isn't a way to do this right now. The |
Beta Was this translation helpful? Give feedback.
-
I'm using dagster to orchestrate airbyte and dbt.
I have connections to multiple airbyte streams that serve as the root level assets, that then feed into downstream dbt models.
Currently, because I'm loading in dbt assets with one dbt_assets decorator, if any of the upstream airbyte assets fail none of the downstream dbt assets will run.
I've had limited success with creating multiple @dbt_assets decorators, which seems to separate the dbt assets from eachother in terms of upstream dependencies.
What I want to happen, is for the dbt models that don't depend on the failed airbyte sync to continue to run.
Is there any way to do this without loading in dbt models with n @dbt_assets decorators?
Beta Was this translation helpful? Give feedback.
All reactions