Hi community, how is the best practice for impleme...
# best-practices
c
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)
Copy code
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
Hey Chu, you want mapping. For Prefect help, #prefect-community is the better channel
šŸ™Œ 1
āœ… 1