Hi All, I'm running into an issue where dagster is...
# integration-dbt
b
Hi All, I'm running into an issue where dagster is throwing this error for me:
Copy code
dagster._core.errors.DagsterInvalidDefinitionError: Assets can only depend on themselves if they are time-partitioned and each partition depends on earlier partitions
I have a dbt source table and a downstream dbt model with the same name. Outside of dagster, this works for me because one database is dedicated to source tables and another database is dedicated to all of the models. Has anyone else run into this issue?
s
Hi Brian - could you use the
node_info_to_asset_key
argument on
load_assets_from_dbt_project
to make sure that they end up with different asset keys?
ty spinny 1
b
That did the trick - thank you!
130 Views