Is there any timeline when the .submit() method wi...
# pacc-nov-19-20-2024
m
Is there any timeline when the .submit() method will be available to use with subflows?
j
I don’t believe so. FYI for other folks:
.submit
is used to submit tasks to a TaskRunner for parallel or concurrent runs. The Bonus slides have some more discussion.
👍 1
Note that you can wrap a flow in a task if you want to submit a flow to a task runner.
Depending on the use case, you can just use tasks with
.submit
or just use flows with standard async Python for concurrency.
e
@Matthew Antezzo there is this open issue that I’d encourage giving an upvote https://github.com/PrefectHQ/prefect/issues/6689