Bulk Run Many Tasks
Often you may want to run a task multiple times with different inputs. There is significant overhead (i.e. network roundtrips) to write the task, so if you’re running multiple tasks, it’s best to use the bulk run methods.
You can use the aio_run_many
method to bulk run a task. This will return a list of results.
Workflow.create_bulk_run_item
is a typed helper to create the inputs for
each task.
There are additional bulk methods available on the Workflow
object.
aio_run_many
aio_run_many_no_wait
And blocking variants:
run_many
run_many_no_wait
As with the run methods, you can call bulk methods from within a task and the runs will be associated with the parent task in the dashboard.