Hi all I have two diffrent dbt project that want r...
# integration-dbt
m
Hi all I have two diffrent dbt project that want run dbt_project_1 after that run dbt_project_2 and schedule this every 15 minutes can someone help me
n
1. Create a Schedule that will trigger the materialization of dbt_project_1 assets every 15 min 2. Create a (multi) asset sensor that will watch the materialization of dbt_project_1 assets and trigger the materialization of dbt_project_2.
m
thanks how can monitor that run of dbt_project_1_job was finished?
n
You can test in the multi-asser sensor that all the monitored assets have run, see
if all(asset_events.values()):
in doc: https://docs.dagster.io/concepts/partitions-schedules-sensors/asset-sensors#triggering-runs-upon-materializations It will take some reading to get used to all the concepts.
m
thank you very much I test it
👍 1