Hi community, how is the best practice for implementing parallel dbt jobs using Prefect 1.0? Basically, I need to send different client_id to dbt jobs and trigger dbt run for each client_id (pseudo code as following)
with Flow as flow:
for i in id_list:
dbt_run_function(i)
(Iām wondering if a simple for loop would achieve parallelism?)
k
Kevin Kho
07/19/2022, 7:34 PM
Hey Chu, you want mapping. For Prefect help, #prefect-community is the better channel