Hey all, I’m looking for a way to run multiple flo...
# ask-community
r
Hey all, I’m looking for a way to run multiple flows with different schedules. When I try to do this and execute each flow’s
.run()
method in a loop, though, it only the first runs and seems to block before the others run. Is there a way around this?
Just saw this now - giving it a look:
k
Hi @Ryan Brideau, if you run with a backend (Prefect Cloud), you will get the concurrent runs. Prefect Cloud has 20000 free task runs every month and you don’t need to put your credit card down
r
Thanks Kevin, but I ended up having to use a different scheduler for what I was doing. This particular bit of work has to be on-prem and the blocking that happens in the flow’s
_run()
method added quite a bit of complexity.