What does .submit() do when you call a task functi...
# pacc-aug-28-29-2024
c
What does .submit() do when you call a task function in a flow? Why would I call mytask.submit() this way instead of mytask()?
k
.submit()
hands the task execution over to a task runner, which can enable concurrent or parallel task execution depending on the task runner you choose for your flow
👍 1
otherwise, task functions will be run sequentially just like normal python code