Hey everyone. I’d like to execute user-defined wor...
# ask-community
a
Hey everyone. I’d like to execute user-defined workflows where each node is a data class with prefect 3. I have a hard time figuring out how to create a task without executing it in Prefect 3. I need to do it to set an order of execution between Prefect tasks via ‘wait_for’ (otherwise I’d need to topologically sort my data classes first). Using something like
myTask.submit()
sends task for execution immediately. In Prefect 2 I’d be able to use implicit syntax with task() and
set_upstream
calls. In Dask I can use
dask.delayed()
for this.