There seem to be different implementations of task/job queues for Python 3:
- Celery, popular but apparently unmaintained and stale;
- RQ, of which I have little information;
- TaskTiger, similarly to RQ I know little about it;
- Huey , similarly to RQ I know little about it;
- WorQ had its last update in 2016.
Then there are “cloud” based solutions like Google’s Task Queue API or AWS’s Cloud Watch Events, but that’s more of a last resort.
For my project I am looking for a stable and active task queue implementation. I’ve used Celery for the past year, but the lack of support and non-attention to existing bugs is worrisome.
What alternatives exist?