vote up 1 vote down star

Do you know/use any distributed job queue for python? Can you share links or tools

flag

73% accept rate

5 Answers

vote up 2 vote down

there are a couple of python rabbitmq clients - see this thread for instance.

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

In addition to multiprocessing there's also the Celery project, if you're using Django.

link|flag
Thanks for the link? Is it strictly used with django? can we use it for standard python projects? – Gopalakrishnan Subramani Aug 28 at 3:20
I don't see why not, with suitable adaptation (not sure how much work that'll be - depends on your exact requirement). – Vinay Sajip Aug 28 at 8:20
vote up 1 vote down

There's also "bucker" by Sylvain Hellegouarch which you can find here:

It describes itself like this:

  • bucker is a queue system that supports multiple storage for the queue (memcached, Amazon SQS for now) and is driven by XML messages sent over a TCP connections between a client and the queue server.
link|flag
vote up 0 vote down

Look at beanstalkd

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.