Hey community, is there a way to loop over a group of tasks in sequential order ? Looping ironically doesnt seem to do this.
I dont want to transfer any data between loops, just kind of want to hack a flow to run multiple times within the minute
k
Kevin Kho
08/04/2021, 11:05 PM
Hey @Ben Muller, I believe this is not a thing in Prefect because it violates the acyclic part of the DAG. Yeah the easiest way is to just use
StartFlowRun
and loop that maybe? Or loop your tasks with
task.run()
b
Ben Muller
08/04/2021, 11:16 PM
Thanks @Kevin Kho, sorry I dont actually follow. Can you show me what this would look like?