Do you know/use any distributed job queue for python? Can you share links or tools
|
feedback
|
|
In addition to multiprocessing there's also the Celery project, if you're using Django. | |||||||||||
feedback
|
|
Pyres is a resque clone built in python. Resque is used by Github as their message queue. Both use Redis as the queue backend and provide a web-based monitoring application. | |||
|
feedback
|
|
There's also "bucker" by Sylvain Hellegouarch which you can find here: It describes itself like this:
| |||
|
feedback
|
|
there are a couple of python rabbitmq clients - see this thread for instance. | |||
|
feedback
|
|
redqueue? It's implemented in python+tornado framework, speaks memcached protocol and is optionally persistent into log files. Currently it is also able to behave like beanstalkd, the reserve/delete way in memcache protocol as well. | |||
feedback
|
|
It's a year late or whatever, but this is something I've hacked together to make a queue of Processes executing them only X number at a time. http://github.com/goosemo/job_queue | |||
|
feedback
|
|
You probably want to look at multiprocessing's Queue. Included in Python 2.6, get it on PyPI for earlier versions of Python. Standard library documentation: http://docs.python.org/library/multiprocessing.html On PyPI: http://pypi.python.org/pypi/multiprocessing | |||
|
feedback
|
|
Look at beanstalkd | |||
|
feedback
|