job queue implementation for python

后端 未结 9 1565
生来不讨喜
生来不讨喜 2020-12-23 17:50

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

相关标签:
9条回答
  • 2020-12-23 18:28

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

    • http://trac.defuze.org/wiki/bucker

    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.
    0 讨论(0)
  • 2020-12-23 18:29

    Also there is Unix 'at'

    For more info: man at

    0 讨论(0)
  • 2020-12-23 18:30

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

    0 讨论(0)
  • 2020-12-23 18:30

    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

    0 讨论(0)
  • 2020-12-23 18:32

    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

    0 讨论(0)
  • 2020-12-23 18:34

    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

    0 讨论(0)
提交回复
热议问题