README.rst 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. .. image:: http://docs.celeryproject.org/en/latest/_images/celery-banner-small.png
  2. |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge|
  3. :Version: 4.2.1 (windowlicker)
  4. :Web: http://celeryproject.org/
  5. :Download: https://pypi.org/project/celery/
  6. :Source: https://github.com/celery/celery/
  7. :Keywords: task, queue, job, async, rabbitmq, amqp, redis,
  8. python, distributed, actors
  9. Donations
  10. =========
  11. This project relies on your generous donations.
  12. If you are using Celery to create a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Celery's future.
  13. We also offer priority support for those who will become our **`Silver`_** or **`Gold`_** sponsors.
  14. .. _`backer`: https://opencollective.com/celery#backer
  15. .. _`sponsor`: https://opencollective.com/celery#sponsor
  16. .. _`Silver`: https://opencollective.com/celery/order/5153
  17. .. _`Gold`: https://opencollective.com/celery/order/5152
  18. Sponsors
  19. --------
  20. |ImageLink|_
  21. .. |ImageLink| image:: https://i.imgur.com/ULmQEib.png
  22. .. _ImageLink: https://getstream.io/try-the-api/?utm_source=celery&utm_medium=banner&utm_campaign=github
  23. What's a Task Queue?
  24. ====================
  25. Task queues are used as a mechanism to distribute work across threads or
  26. machines.
  27. A task queue's input is a unit of work, called a task, dedicated worker
  28. processes then constantly monitor the queue for new work to perform.
  29. Celery communicates via messages, usually using a broker
  30. to mediate between clients and workers. To initiate a task a client puts a
  31. message on the queue, the broker then delivers the message to a worker.
  32. A Celery system can consist of multiple workers and brokers, giving way
  33. to high availability and horizontal scaling.
  34. Celery is written in Python, but the protocol can be implemented in any
  35. language. In addition to Python there's node-celery_ for Node.js,
  36. and a `PHP client`_.
  37. Language interoperability can also be achieved by using webhooks
  38. in such a way that the client enqueues an URL to be requested by a worker.
  39. .. _node-celery: https://github.com/mher/node-celery
  40. .. _`PHP client`: https://github.com/gjedeer/celery-php
  41. What do I need?
  42. ===============
  43. Celery version 4.2 runs on,
  44. - Python (2.7, 3.4, 3.5, 3.6)
  45. - PyPy (5.8)
  46. This is the last version to support Python 2.7,
  47. and from the next version (Celery 5.x) Python 3.5 or newer is required.
  48. If you're running an older version of Python, you need to be running
  49. an older version of Celery:
  50. - Python 2.6: Celery series 3.1 or earlier.
  51. - Python 2.5: Celery series 3.0 or earlier.
  52. - Python 2.4 was Celery series 2.2 or earlier.
  53. Celery is a project with minimal funding,
  54. so we don't support Microsoft Windows.
  55. Please don't open any issues related to that platform.
  56. *Celery* is usually used with a message broker to send and receive messages.
  57. The RabbitMQ, Redis transports are feature complete,
  58. but there's also experimental support for a myriad of other solutions, including
  59. using SQLite for local development.
  60. *Celery* can run on a single machine, on multiple machines, or even
  61. across datacenters.
  62. Get Started
  63. ===========
  64. If this is the first time you're trying to use Celery, or you're
  65. new to Celery 4.2 coming from previous versions then you should read our
  66. getting started tutorials:
  67. - `First steps with Celery`_
  68. Tutorial teaching you the bare minimum needed to get started with Celery.
  69. - `Next steps`_
  70. A more complete overview, showing more features.
  71. .. _`First steps with Celery`:
  72. http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html
  73. .. _`Next steps`:
  74. http://docs.celeryproject.org/en/latest/getting-started/next-steps.html
  75. Celery is...
  76. =============
  77. - **Simple**
  78. Celery is easy to use and maintain, and does *not need configuration files*.
  79. It has an active, friendly community you can talk to for support,
  80. like at our `mailing-list`_, or the IRC channel.
  81. Here's one of the simplest applications you can make::
  82. from celery import Celery
  83. app = Celery('hello', broker='amqp://guest@localhost//')
  84. @app.task
  85. def hello():
  86. return 'hello world'
  87. - **Highly Available**
  88. Workers and clients will automatically retry in the event
  89. of connection loss or failure, and some brokers support
  90. HA in way of *Primary/Primary* or *Primary/Replica* replication.
  91. - **Fast**
  92. A single Celery process can process millions of tasks a minute,
  93. with sub-millisecond round-trip latency (using RabbitMQ,
  94. py-librabbitmq, and optimized settings).
  95. - **Flexible**
  96. Almost every part of *Celery* can be extended or used on its own,
  97. Custom pool implementations, serializers, compression schemes, logging,
  98. schedulers, consumers, producers, broker transports, and much more.
  99. It supports...
  100. ================
  101. - **Message Transports**
  102. - RabbitMQ_, Redis_, Amazon SQS
  103. - **Concurrency**
  104. - Prefork, Eventlet_, gevent_, single threaded (``solo``)
  105. - **Result Stores**
  106. - AMQP, Redis
  107. - memcached
  108. - SQLAlchemy, Django ORM
  109. - Apache Cassandra, IronCache, Elasticsearch
  110. - **Serialization**
  111. - *pickle*, *json*, *yaml*, *msgpack*.
  112. - *zlib*, *bzip2* compression.
  113. - Cryptographic message signing.
  114. .. _`Eventlet`: http://eventlet.net/
  115. .. _`gevent`: http://gevent.org/
  116. .. _RabbitMQ: https://rabbitmq.com
  117. .. _Redis: https://redis.io
  118. .. _SQLAlchemy: http://sqlalchemy.org
  119. Framework Integration
  120. =====================
  121. Celery is easy to integrate with web frameworks, some of which even have
  122. integration packages:
  123. +--------------------+------------------------+
  124. | `Django`_ | not needed |
  125. +--------------------+------------------------+
  126. | `Pyramid`_ | `pyramid_celery`_ |
  127. +--------------------+------------------------+
  128. | `Pylons`_ | `celery-pylons`_ |
  129. +--------------------+------------------------+
  130. | `Flask`_ | not needed |
  131. +--------------------+------------------------+
  132. | `web2py`_ | `web2py-celery`_ |
  133. +--------------------+------------------------+
  134. | `Tornado`_ | `tornado-celery`_ |
  135. +--------------------+------------------------+
  136. The integration packages aren't strictly necessary, but they can make
  137. development easier, and sometimes they add important hooks like closing
  138. database connections at ``fork``.
  139. .. _`Django`: https://djangoproject.com/
  140. .. _`Pylons`: http://pylonsproject.org/
  141. .. _`Flask`: http://flask.pocoo.org/
  142. .. _`web2py`: http://web2py.com/
  143. .. _`Bottle`: https://bottlepy.org/
  144. .. _`Pyramid`: http://docs.pylonsproject.org/en/latest/docs/pyramid.html
  145. .. _`pyramid_celery`: https://pypi.org/project/pyramid_celery/
  146. .. _`celery-pylons`: https://pypi.org/project/celery-pylons/
  147. .. _`web2py-celery`: https://code.google.com/p/web2py-celery/
  148. .. _`Tornado`: http://www.tornadoweb.org/
  149. .. _`tornado-celery`: https://github.com/mher/tornado-celery/
  150. .. _celery-documentation:
  151. Documentation
  152. =============
  153. The `latest documentation`_ is hosted at Read The Docs, containing user guides,
  154. tutorials, and an API reference.
  155. .. _`latest documentation`: http://docs.celeryproject.org/en/latest/
  156. .. _celery-installation:
  157. Installation
  158. ============
  159. You can install Celery either via the Python Package Index (PyPI)
  160. or from source.
  161. To install using ``pip``:
  162. ::
  163. $ pip install -U Celery
  164. .. _bundles:
  165. Bundles
  166. -------
  167. Celery also defines a group of bundles that can be used
  168. to install Celery and the dependencies for a given feature.
  169. You can specify these in your requirements or on the ``pip``
  170. command-line by using brackets. Multiple bundles can be specified by
  171. separating them by commas.
  172. ::
  173. $ pip install "celery[librabbitmq]"
  174. $ pip install "celery[librabbitmq,redis,auth,msgpack]"
  175. The following bundles are available:
  176. Serializers
  177. ~~~~~~~~~~~
  178. :``celery[auth]``:
  179. for using the ``auth`` security serializer.
  180. :``celery[msgpack]``:
  181. for using the msgpack serializer.
  182. :``celery[yaml]``:
  183. for using the yaml serializer.
  184. Concurrency
  185. ~~~~~~~~~~~
  186. :``celery[eventlet]``:
  187. for using the ``eventlet`` pool.
  188. :``celery[gevent]``:
  189. for using the ``gevent`` pool.
  190. Transports and Backends
  191. ~~~~~~~~~~~~~~~~~~~~~~~
  192. :``celery[librabbitmq]``:
  193. for using the librabbitmq C library.
  194. :``celery[redis]``:
  195. for using Redis as a message transport or as a result backend.
  196. :``celery[sqs]``:
  197. for using Amazon SQS as a message transport.
  198. :``celery[tblib``]:
  199. for using the ``task_remote_tracebacks`` feature.
  200. :``celery[memcache]``:
  201. for using Memcached as a result backend (using ``pylibmc``)
  202. :``celery[pymemcache]``:
  203. for using Memcached as a result backend (pure-Python implementation).
  204. :``celery[cassandra]``:
  205. for using Apache Cassandra as a result backend with DataStax driver.
  206. :``celery[azureblockblob]``:
  207. for using Azure Storage as a result backend (using ``azure-storage``)
  208. :``celery[couchbase]``:
  209. for using Couchbase as a result backend.
  210. :``celery[elasticsearch]``:
  211. for using Elasticsearch as a result backend.
  212. :``celery[riak]``:
  213. for using Riak as a result backend.
  214. :``celery[zookeeper]``:
  215. for using Zookeeper as a message transport.
  216. :``celery[sqlalchemy]``:
  217. for using SQLAlchemy as a result backend (*supported*).
  218. :``celery[pyro]``:
  219. for using the Pyro4 message transport (*experimental*).
  220. :``celery[slmq]``:
  221. for using the SoftLayer Message Queue transport (*experimental*).
  222. :``celery[consul]``:
  223. for using the Consul.io Key/Value store as a message transport or result backend (*experimental*).
  224. :``celery[django]``:
  225. specifies the lowest version possible for Django support.
  226. You should probably not use this in your requirements, it's here
  227. for informational purposes only.
  228. .. _celery-installing-from-source:
  229. Downloading and installing from source
  230. --------------------------------------
  231. Download the latest version of Celery from PyPI:
  232. https://pypi.org/project/celery/
  233. You can install it by doing the following,:
  234. ::
  235. $ tar xvfz celery-0.0.0.tar.gz
  236. $ cd celery-0.0.0
  237. $ python setup.py build
  238. # python setup.py install
  239. The last command must be executed as a privileged user if
  240. you aren't currently using a virtualenv.
  241. .. _celery-installing-from-git:
  242. Using the development version
  243. -----------------------------
  244. With pip
  245. ~~~~~~~~
  246. The Celery development version also requires the development
  247. versions of ``kombu``, ``amqp``, ``billiard``, and ``vine``.
  248. You can install the latest snapshot of these using the following
  249. pip commands:
  250. ::
  251. $ pip install https://github.com/celery/celery/zipball/master#egg=celery
  252. $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard
  253. $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp
  254. $ pip install https://github.com/celery/kombu/zipball/master#egg=kombu
  255. $ pip install https://github.com/celery/vine/zipball/master#egg=vine
  256. With git
  257. ~~~~~~~~
  258. Please see the Contributing section.
  259. .. _getting-help:
  260. Getting Help
  261. ============
  262. .. _mailing-list:
  263. Mailing list
  264. ------------
  265. For discussions about the usage, development, and future of Celery,
  266. please join the `celery-users`_ mailing list.
  267. .. _`celery-users`: https://groups.google.com/group/celery-users/
  268. .. _irc-channel:
  269. IRC
  270. ---
  271. Come chat with us on IRC. The **#celery** channel is located at the `Freenode`_
  272. network.
  273. .. _`Freenode`: https://freenode.net
  274. .. _bug-tracker:
  275. Bug tracker
  276. ===========
  277. If you have any suggestions, bug reports, or annoyances please report them
  278. to our issue tracker at https://github.com/celery/celery/issues/
  279. .. _wiki:
  280. Wiki
  281. ====
  282. https://wiki.github.com/celery/celery/
  283. Credits
  284. =======
  285. .. _contributing-short:
  286. Contributors
  287. ------------
  288. This project exists thanks to all the people who contribute. Development of
  289. `celery` happens at GitHub: https://github.com/celery/celery
  290. You're highly encouraged to participate in the development
  291. of `celery`. If you don't like GitHub (for some reason) you're welcome
  292. to send regular patches.
  293. Be sure to also read the `Contributing to Celery`_ section in the
  294. documentation.
  295. .. _`Contributing to Celery`:
  296. http://docs.celeryproject.org/en/master/contributing.html
  297. |oc-contributors|
  298. .. |oc-contributors| image:: https://opencollective.com/celery/contributors.svg?width=890&button=false
  299. :target: https://github.com/celery/celery/graphs/contributors
  300. Backers
  301. -------
  302. Thank you to all our backers! 🙏 [`Become a backer`_]
  303. .. _`Become a backer`: https://opencollective.com/celery#backer
  304. |oc-backers|
  305. .. |oc-backers| image:: https://opencollective.com/celery/backers.svg?width=890
  306. :target: https://opencollective.com/celery#backers
  307. Sponsors
  308. --------
  309. Support this project by becoming a sponsor. Your logo will show up here with a
  310. link to your website. [`Become a sponsor`_]
  311. .. _`Become a sponsor`: https://opencollective.com/celery#sponsor
  312. |oc-sponsors|
  313. .. |oc-sponsors| image:: https://opencollective.com/celery/sponsor/0/avatar.svg
  314. :target: https://opencollective.com/celery/sponsor/0/website
  315. .. _license:
  316. License
  317. =======
  318. This software is licensed under the `New BSD License`. See the ``LICENSE``
  319. file in the top distribution directory for the full license text.
  320. .. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround
  321. .. |build-status| image:: https://secure.travis-ci.org/celery/celery.png?branch=master
  322. :alt: Build status
  323. :target: https://travis-ci.org/celery/celery
  324. .. |coverage| image:: https://codecov.io/github/celery/celery/coverage.svg?branch=master
  325. :target: https://codecov.io/github/celery/celery?branch=master
  326. .. |license| image:: https://img.shields.io/pypi/l/celery.svg
  327. :alt: BSD License
  328. :target: https://opensource.org/licenses/BSD-3-Clause
  329. .. |wheel| image:: https://img.shields.io/pypi/wheel/celery.svg
  330. :alt: Celery can be installed via wheel
  331. :target: https://pypi.org/project/celery/
  332. .. |pyversion| image:: https://img.shields.io/pypi/pyversions/celery.svg
  333. :alt: Supported Python versions.
  334. :target: https://pypi.org/project/celery/
  335. .. |pyimp| image:: https://img.shields.io/pypi/implementation/celery.svg
  336. :alt: Support Python implementations.
  337. :target: https://pypi.org/project/celery/
  338. .. |ocbackerbadge| image:: https://opencollective.com/celery/backers/badge.svg
  339. :alt: Backers on Open Collective
  340. :target: #backers
  341. .. |ocsponsorbadge| image:: https://opencollective.com/celery/sponsors/badge.svg
  342. :alt: Sponsors on Open Collective
  343. :target: #sponsors