up vote 6 down vote favorite
6
share [g+] share [fb]

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

link|improve this question

79% accept rate
feedback

9 Answers

up vote 4 down vote accepted

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

link|improve this answer
Thanks for the link? Is it strictly used with django? can we use it for standard python projects? – Gopalakrishnan Subramani Aug 28 '09 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 '09 at 8:20
Celery has an underlying library, called Carrot, that you can use without Django. – Alex Gaynor Jan 8 '10 at 3:56
1  
Both Celery and Carrot works without Django. Or that is, you can use it from outside of a Django project. Recently someone even implemented paste support: bitbucket.org/twillis/celery-paste – asksol Feb 1 '10 at 16:25
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.

http://binarydud.github.com/pyres/intro.html

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
rabbitmq is a message queue. Job queues provide job semantics. – CruiZen May 4 '11 at 12:43
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.

REDQUEUE

link|improve this answer
At present, I have been using celery. I will look at the redqueue. Thanks for answer – Gopalakrishnan Subramani Jan 8 '10 at 15:03
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

link|improve this answer
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

link|improve this answer
feedback

Look at beanstalkd

link|improve this answer
feedback

Also there is Unix 'at'

For more info: man at

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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