first-steps-with-celery.rst 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. .. _tut-celery:
  2. .. _first-steps:
  3. =========================
  4. First Steps with Celery
  5. =========================
  6. Celery is a task queue with batteries included.
  7. It's easy to use so that you can get started without learning
  8. the full complexities of the problem it solves. It's designed
  9. around best practices so that your product can scale
  10. and integrate with other languages, and it comes with the
  11. tools and support you need to run such a system in production.
  12. In this tutorial you'll learn the absolute basics of using Celery.
  13. Learn about;
  14. - Choosing and installing a message transport (broker).
  15. - Installing Celery and creating your first task.
  16. - Starting the worker and calling tasks.
  17. - Keeping track of tasks as they transition through different states,
  18. and inspecting return values.
  19. Celery may seem daunting at first - but don't worry - this tutorial
  20. will get you started in no time. It's deliberately kept simple, so
  21. as to not confuse you with advanced features.
  22. After you have finished this tutorial,
  23. it's a good idea to browse the rest of the documentation.
  24. For example the :ref:`next-steps` tutorial will
  25. showcase Celery's capabilities.
  26. .. contents::
  27. :local:
  28. .. _celerytut-broker:
  29. Choosing a Broker
  30. =================
  31. Celery requires a solution to send and receive messages; usually this
  32. comes in the form of a separate service called a *message broker*.
  33. There are several choices available, including:
  34. RabbitMQ
  35. --------
  36. `RabbitMQ`_ is feature-complete, stable, durable and easy to install.
  37. It's an excellent choice for a production environment.
  38. Detailed information about using RabbitMQ with Celery:
  39. :ref:`broker-rabbitmq`
  40. .. _`RabbitMQ`: http://www.rabbitmq.com/
  41. If you're using Ubuntu or Debian install RabbitMQ by executing this
  42. command:
  43. .. code-block:: console
  44. $ sudo apt-get install rabbitmq-server
  45. Or, if you want to run it on Docker execute this:
  46. .. code-block:: console
  47. $ docker run -d -p 5462:5462 rabbitmq
  48. When the command completes, the broker will already be running in the background,
  49. ready to move messages for you: ``Starting rabbitmq-server: SUCCESS``.
  50. Don't worry if you're not running Ubuntu or Debian, you can go to this
  51. website to find similarly simple installation instructions for other
  52. platforms, including Microsoft Windows:
  53. http://www.rabbitmq.com/download.html
  54. Redis
  55. -----
  56. `Redis`_ is also feature-complete, but is more susceptible to data loss in
  57. the event of abrupt termination or power failures. Detailed information about using Redis:
  58. :ref:`broker-redis`
  59. .. _`Redis`: https://redis.io/
  60. If you want to run it on Docker execute this:
  61. .. code-block:: console
  62. $ docker run -d -p 6379:6379 redis
  63. Other brokers
  64. -------------
  65. In addition to the above, there are other experimental transport implementations
  66. to choose from, including :ref:`Amazon SQS <broker-sqs>`.
  67. See :ref:`broker-overview` for a full list.
  68. .. _celerytut-installation:
  69. Installing Celery
  70. =================
  71. Celery is on the Python Package Index (PyPI), so it can be installed
  72. with standard Python tools like ``pip`` or ``easy_install``:
  73. .. code-block:: console
  74. $ pip install celery
  75. Application
  76. ===========
  77. The first thing you need is a Celery instance. We call this the *Celery
  78. application* or just *app* for short. As this instance is used as
  79. the entry-point for everything you want to do in Celery, like creating tasks and
  80. managing workers, it must be possible for other modules to import it.
  81. In this tutorial we keep everything contained in a single module,
  82. but for larger projects you want to create
  83. a :ref:`dedicated module <project-layout>`.
  84. Let's create the file :file:`tasks.py`:
  85. .. code-block:: python
  86. from celery import Celery
  87. app = Celery('tasks', broker='pyamqp://guest@localhost//')
  88. @app.task
  89. def add(x, y):
  90. return x + y
  91. The first argument to :class:`~celery.app.Celery` is the name of the current module.
  92. This is only needed so that names can be automatically generated when the tasks are
  93. defined in the `__main__` module.
  94. The second argument is the broker keyword argument, specifying the URL of the
  95. message broker you want to use. Here using RabbitMQ (also the default option).
  96. See :ref:`celerytut-broker` above for more choices --
  97. for RabbitMQ you can use ``amqp://localhost``, or for Redis you can
  98. use ``redis://localhost``.
  99. You defined a single task, called ``add``, returning the sum of two numbers.
  100. .. _celerytut-running-the-worker:
  101. Running the Celery worker server
  102. ================================
  103. You can now run the worker by executing our program with the ``worker``
  104. argument:
  105. .. code-block:: console
  106. $ celery -A tasks worker --loglevel=info
  107. .. note::
  108. See the :ref:`celerytut-troubleshooting` section if the worker
  109. doesn't start.
  110. In production you'll want to run the worker in the
  111. background as a daemon. To do this you need to use the tools provided
  112. by your platform, or something like `supervisord`_ (see :ref:`daemonizing`
  113. for more information).
  114. For a complete listing of the command-line options available, do:
  115. .. code-block:: console
  116. $ celery worker --help
  117. There are also several other commands available, and help is also available:
  118. .. code-block:: console
  119. $ celery help
  120. .. _`supervisord`: http://supervisord.org
  121. .. _celerytut-calling:
  122. Calling the task
  123. ================
  124. To call our task you can use the :meth:`~@Task.delay` method.
  125. This is a handy shortcut to the :meth:`~@Task.apply_async`
  126. method that gives greater control of the task execution (see
  127. :ref:`guide-calling`)::
  128. >>> from tasks import add
  129. >>> add.delay(4, 4)
  130. The task has now been processed by the worker you started earlier.
  131. You can verify this by looking at the worker's console output.
  132. Calling a task returns an :class:`~@AsyncResult` instance.
  133. This can be used to check the state of the task, wait for the task to finish,
  134. or get its return value (or if the task failed, to get the exception and traceback).
  135. Results are not enabled by default. In order to do remote procedure calls
  136. or keep track of task results in a database, you will need to configure Celery to use a result
  137. backend. This is described in the next section.
  138. .. _celerytut-keeping-results:
  139. Keeping Results
  140. ===============
  141. If you want to keep track of the tasks' states, Celery needs to store or send
  142. the states somewhere. There are several
  143. built-in result backends to choose from: `SQLAlchemy`_/`Django`_ ORM,
  144. `Memcached`_, `Redis`_, :ref:`RPC <conf-rpc-result-backend>` (`RabbitMQ`_/AMQP),
  145. and -- or you can define your own.
  146. .. _`Memcached`: http://memcached.org
  147. .. _`MongoDB`: http://www.mongodb.org
  148. .. _`SQLAlchemy`: http://www.sqlalchemy.org/
  149. .. _`Django`: http://djangoproject.com
  150. For this example we use the `rpc` result backend, that sends states
  151. back as transient messages. The backend is specified via the ``backend`` argument to
  152. :class:`@Celery`, (or via the :setting:`result_backend` setting if
  153. you choose to use a configuration module):
  154. .. code-block:: python
  155. app = Celery('tasks', backend='rpc://', broker='pyamqp://')
  156. Or if you want to use Redis as the result backend, but still use RabbitMQ as
  157. the message broker (a popular combination):
  158. .. code-block:: python
  159. app = Celery('tasks', backend='redis://localhost', broker='pyamqp://')
  160. To read more about result backends please see :ref:`task-result-backends`.
  161. Now with the result backend configured, let's call the task again.
  162. This time you'll hold on to the :class:`~@AsyncResult` instance returned
  163. when you call a task:
  164. .. code-block:: pycon
  165. >>> result = add.delay(4, 4)
  166. The :meth:`~@AsyncResult.ready` method returns whether the task
  167. has finished processing or not:
  168. .. code-block:: pycon
  169. >>> result.ready()
  170. False
  171. You can wait for the result to complete, but this is rarely used
  172. since it turns the asynchronous call into a synchronous one:
  173. .. code-block:: pycon
  174. >>> result.get(timeout=1)
  175. 8
  176. In case the task raised an exception, :meth:`~@AsyncResult.get` will
  177. re-raise the exception, but you can override this by specifying
  178. the ``propagate`` argument:
  179. .. code-block:: pycon
  180. >>> result.get(propagate=False)
  181. If the task raised an exception, you can also gain access to the
  182. original traceback:
  183. .. code-block:: pycon
  184. >>> result.traceback
  185. .. warning::
  186. Backends use resources to store and transmit results. To ensure
  187. that resources are released, you must eventually call
  188. :meth:`~@AsyncResult.get` or :meth:`~@AsyncResult.forget` on
  189. EVERY :class:`~@AsyncResult` instance returned after calling
  190. a task.
  191. See :mod:`celery.result` for the complete result object reference.
  192. .. _celerytut-configuration:
  193. Configuration
  194. =============
  195. Celery, like a consumer appliance, doesn't need much configuration to operate.
  196. It has an input and an output. The input must be connected to a broker, and the output can
  197. be optionally connected to a result backend. However, if you look closely at the back,
  198. there's a lid revealing loads of sliders, dials, and buttons: this is the configuration.
  199. The default configuration should be good enough for most use cases, but there are
  200. many options that can be configured to make Celery work exactly as needed.
  201. Reading about the options available is a good idea to familiarize yourself with what
  202. can be configured. You can read about the options in the
  203. :ref:`configuration` reference.
  204. The configuration can be set on the app directly or by using a dedicated
  205. configuration module.
  206. As an example you can configure the default serializer used for serializing
  207. task payloads by changing the :setting:`task_serializer` setting:
  208. .. code-block:: python
  209. app.conf.task_serializer = 'json'
  210. If you're configuring many settings at once you can use ``update``:
  211. .. code-block:: python
  212. app.conf.update(
  213. task_serializer='json',
  214. accept_content=['json'], # Ignore other content
  215. result_serializer='json',
  216. timezone='Europe/Oslo',
  217. enable_utc=True,
  218. )
  219. For larger projects, a dedicated configuration module is recommended.
  220. Hard coding periodic task intervals and task routing options is discouraged.
  221. It is much better to keep these in a centralized location. This is especially
  222. true for libraries, as it enables users to control how their tasks behave.
  223. A centralized configuration will also allow your SysAdmin to make simple changes
  224. in the event of system trouble.
  225. You can tell your Celery instance to use a configuration module
  226. by calling the :meth:`@config_from_object` method:
  227. .. code-block:: python
  228. app.config_from_object('celeryconfig')
  229. This module is often called "``celeryconfig``", but you can use any
  230. module name.
  231. In the above case, a module named ``celeryconfig.py`` must be available to load from the
  232. current directory or on the Python path. It could look something like this:
  233. :file:`celeryconfig.py`:
  234. .. code-block:: python
  235. broker_url = 'pyamqp://'
  236. result_backend = 'rpc://'
  237. task_serializer = 'json'
  238. result_serializer = 'json'
  239. accept_content = ['json']
  240. timezone = 'Europe/Oslo'
  241. enable_utc = True
  242. To verify that your configuration file works properly and doesn't
  243. contain any syntax errors, you can try to import it:
  244. .. code-block:: console
  245. $ python -m celeryconfig
  246. For a complete reference of configuration options, see :ref:`configuration`.
  247. To demonstrate the power of configuration files, this is how you'd
  248. route a misbehaving task to a dedicated queue:
  249. :file:`celeryconfig.py`:
  250. .. code-block:: python
  251. task_routes = {
  252. 'tasks.add': 'low-priority',
  253. }
  254. Or instead of routing it you could rate limit the task
  255. instead, so that only 10 tasks of this type can be processed in a minute
  256. (10/m):
  257. :file:`celeryconfig.py`:
  258. .. code-block:: python
  259. task_annotations = {
  260. 'tasks.add': {'rate_limit': '10/m'}
  261. }
  262. If you're using RabbitMQ or Redis as the
  263. broker then you can also direct the workers to set a new rate limit
  264. for the task at runtime:
  265. .. code-block:: console
  266. $ celery -A tasks control rate_limit tasks.add 10/m
  267. worker@example.com: OK
  268. new rate limit set successfully
  269. See :ref:`guide-routing` to read more about task routing,
  270. and the :setting:`task_annotations` setting for more about annotations,
  271. or :ref:`guide-monitoring` for more about remote control commands
  272. and how to monitor what your workers are doing.
  273. Where to go from here
  274. =====================
  275. If you want to learn more you should continue to the
  276. :ref:`Next Steps <next-steps>` tutorial, and after that you
  277. can read the :ref:`User Guide <guide>`.
  278. .. _celerytut-troubleshooting:
  279. Troubleshooting
  280. ===============
  281. There's also a troubleshooting section in the :ref:`faq`.
  282. Worker doesn't start: Permission Error
  283. --------------------------------------
  284. - If you're using Debian, Ubuntu or other Debian-based distributions:
  285. Debian recently renamed the :file:`/dev/shm` special file
  286. to :file:`/run/shm`.
  287. A simple workaround is to create a symbolic link:
  288. .. code-block:: console
  289. # ln -s /run/shm /dev/shm
  290. - Others:
  291. If you provide any of the :option:`--pidfile <celery worker --pidfile>`,
  292. :option:`--logfile <celery worker --logfile>` or
  293. :option:`--statedb <celery worker --statedb>` arguments, then you must
  294. make sure that they point to a file or directory that's writable and
  295. readable by the user starting the worker.
  296. Result backend doesn't work or tasks are always in ``PENDING`` state
  297. --------------------------------------------------------------------
  298. All tasks are :state:`PENDING` by default, so the state would've been
  299. better named "unknown". Celery doesn't update the state when a task
  300. is sent, and any task with no history is assumed to be pending (you know
  301. the task id, after all).
  302. 1) Make sure that the task doesn't have ``ignore_result`` enabled.
  303. Enabling this option will force the worker to skip updating
  304. states.
  305. 2) Make sure the :setting:`task_ignore_result` setting isn't enabled.
  306. 3) Make sure that you don't have any old workers still running.
  307. It's easy to start multiple workers by accident, so make sure
  308. that the previous worker is properly shut down before you start a new one.
  309. An old worker that isn't configured with the expected result backend
  310. may be running and is hijacking the tasks.
  311. The :option:`--pidfile <celery worker --pidfile>` argument can be set to
  312. an absolute path to make sure this doesn't happen.
  313. 4) Make sure the client is configured with the right backend.
  314. If, for some reason, the client is configured to use a different backend
  315. than the worker, you won't be able to receive the result.
  316. Make sure the backend is configured correctly:
  317. .. code-block:: pycon
  318. >>> result = task.delay()
  319. >>> print(result.backend)