-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Open
Description
Hello!
I have found that there is no integration of celery with asyncio, I expected to have a way to run the workers in an ioloop so that I could execute several IOBound tasks at the same time (I already have all the business logic implemented in asyncio), but I found that the only supported integration is eventlet.
Also, I haven't found any way to execute more than one task at a time in a worker. (use prefetch_count >1)
Expected behavior
To be able to write async tasks
Actual behavior
I can only patch all the IO in python to get async
Reactions are currently unavailable