Ask HN: What's everyone using for background job processing?
2 comments
python-rq[1], celery[2], beanstalkd[3], or mod_gearmand[4].
For several of my production projects, I like mixing celery with redis. They are a great fit.
[1] http://python-rq.org [2] http://www.celeryproject.org [3] http://kr.github.io/beanstalkd/ [4] http://gearman.org
For several of my production projects, I like mixing celery with redis. They are a great fit.
[1] http://python-rq.org [2] http://www.celeryproject.org [3] http://kr.github.io/beanstalkd/ [4] http://gearman.org
Any suggestions or recommendations? I want to be able to issue jobs, and track if they're completed. On a failure, I'd resend it to another worker.
Sounds simple enough, but it's hard to pick out the right one from that long list.