https://prefect.io logo
Title
n

Nils

01/24/2023, 3:59 PM
I'm submitting ~1000 tasks with ConcurrentTaskRunner but they all tasks stay stuck in status "submitted". I expect the tasks to be executed right away but this is not the case. Each tasks is responsible for doing a web request to download an image. Why is ConcurrentTaskRunner not able to handle this?
I'm thinking of using Asyncio. However, I'm unsure how to implement this when my flows are executed using run_deployment as
asyncio.run()
should be in
if ___name__ == __main__:_