Celery Task Queue

Celery
Stable release 3.1.23 / March 9, 2016 (2016-03-09)
Written in Python
Platform Cross-platform
Available in Python
Type Message-oriented middleware
License BSD License
Website celeryproject.org

Celery is an open source asynchronous task queue/job queue based on distributed message passing. It is focused on real-time operation, but supports scheduling as well.

Overview

The execution units, called tasks, are executed concurrently on one or more worker nodes using multiprocessing, eventlet or gevent. Tasks can execute asynchronously (in the background) or synchronously (wait until ready). Celery is used in production systems, by the likes of Instagram and AdRoll, to process millions of tasks every day.[1]

Technology

Celery is written in Python, but the protocol can be implemented in any language. It can also operate with other languages using webhooks. There is also RCelery [2] for the Ruby programming language, and a PHP client.[3]

The recommended message broker is RabbitMQ, but support for Redis, MongoDB, Beanstalk,[lower-roman 1][lower-roman 2] Amazon SQS, CouchDB, IronMQ and databases (using SQLAlchemy or the Django ORM) is also available.

See also

References

Notes
  1. NB - This is not Amazon's Elastic Beanstalk
  2. "currently not working well"[4]

External links


This article is issued from Wikipedia - version of the Friday, May 06, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.