Christian Nuss
07/14/2022, 5:50 PMAnna Geller
07/14/2022, 6:30 PMChristian Nuss
07/14/2022, 6:42 PMraw_customers
, raw_orders
, and raw_payments
are created, in parallel (lets assume that raw_payments
took 3 hours, and the other two took minutes
then, in your example, how could we make dbt
run once all 3 have finished?Anna Geller
07/14/2022, 8:00 PMupstream_tasks=[raw_customers, raw_orders, raw_payments]
, while making sure you use the wait_for_flow_run
task too - LMK if this is not clear and feel free to share your parent flowChristian Nuss
07/14/2022, 8:10 PMwait_for_flow_run
wait for in this tree?Anna Geller
07/14/2022, 10:32 PM