next-steps.rst 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765
  1. .. _next-steps:
  2. ============
  3. Next Steps
  4. ============
  5. The :ref:`first-steps` guide is intentionally minimal. In this guide
  6. I will demonstrate what Celery offers in more detail, including
  7. how to add Celery support for your application and library.
  8. This document does not document all of Celery's features and
  9. best practices, so it's recommended that you also read the
  10. :ref:`User Guide <guide>`
  11. .. contents::
  12. :local:
  13. :depth: 1
  14. Using Celery in your Application
  15. ================================
  16. .. _project-layout:
  17. Our Project
  18. -----------
  19. Project layout::
  20. proj/__init__.py
  21. /celery.py
  22. /tasks.py
  23. :file:`proj/celery.py`
  24. ~~~~~~~~~~~~~~~~~~~~~~
  25. .. literalinclude:: ../../examples/next-steps/proj/celery.py
  26. :language: python
  27. In this module you created our :class:`@Celery` instance (sometimes
  28. referred to as the *app*). To use Celery within your project
  29. you simply import this instance.
  30. - The ``broker`` argument specifies the URL of the broker to use.
  31. See :ref:`celerytut-broker` for more information.
  32. - The ``backend`` argument specifies the result backend to use,
  33. It's used to keep track of task state and results.
  34. While results are disabled by default I use the amqp result backend here
  35. because I demonstrate how retrieving results work later, you may want to use
  36. a different backend for your application. They all have different
  37. strengths and weaknesses. If you don't need results it's better
  38. to disable them. Results can also be disabled for individual tasks
  39. by setting the ``@task(ignore_result=True)`` option.
  40. See :ref:`celerytut-keeping-results` for more information.
  41. - The ``include`` argument is a list of modules to import when
  42. the worker starts. You need to add our tasks module here so
  43. that the worker is able to find our tasks.
  44. :file:`proj/tasks.py`
  45. ~~~~~~~~~~~~~~~~~~~~~
  46. .. literalinclude:: ../../examples/next-steps/proj/tasks.py
  47. :language: python
  48. Starting the worker
  49. -------------------
  50. The :program:`celery` program can be used to start the worker (you need to run the worker in the directory above proj):
  51. .. code-block:: console
  52. $ celery -A proj worker -l info
  53. When the worker starts you should see a banner and some messages::
  54. -------------- celery@halcyon.local v4.0 (0today8)
  55. ---- **** -----
  56. --- * *** * -- [Configuration]
  57. -- * - **** --- . broker: amqp://guest@localhost:5672//
  58. - ** ---------- . app: __main__:0x1012d8590
  59. - ** ---------- . concurrency: 8 (processes)
  60. - ** ---------- . events: OFF (enable -E to monitor this worker)
  61. - ** ----------
  62. - *** --- * --- [Queues]
  63. -- ******* ---- . celery: exchange:celery(direct) binding:celery
  64. --- ***** -----
  65. [2012-06-08 16:23:51,078: WARNING/MainProcess] celery@halcyon.local has started.
  66. -- The *broker* is the URL you specified in the broker argument in our ``celery``
  67. module, you can also specify a different broker on the command-line by using
  68. the :option:`-b` option.
  69. -- *Concurrency* is the number of prefork worker process used
  70. to process your tasks concurrently, when all of these are busy doing work
  71. new tasks will have to wait for one of the tasks to finish before
  72. it can be processed.
  73. The default concurrency number is the number of CPU's on that machine
  74. (including cores), you can specify a custom number using :option:`-c` option.
  75. There is no recommended value, as the optimal number depends on a number of
  76. factors, but if your tasks are mostly I/O-bound then you can try to increase
  77. it, experimentation has shown that adding more than twice the number
  78. of CPU's is rarely effective, and likely to degrade performance
  79. instead.
  80. Including the default prefork pool, Celery also supports using
  81. Eventlet, Gevent, and threads (see :ref:`concurrency`).
  82. -- *Events* is an option that when enabled causes Celery to send
  83. monitoring messages (events) for actions occurring in the worker.
  84. These can be used by monitor programs like ``celery events``,
  85. and Flower - the real-time Celery monitor, which you can read about in
  86. the :ref:`Monitoring and Management guide <guide-monitoring>`.
  87. -- *Queues* is the list of queues that the worker will consume
  88. tasks from. The worker can be told to consume from several queues
  89. at once, and this is used to route messages to specific workers
  90. as a means for Quality of Service, separation of concerns,
  91. and emulating priorities, all described in the :ref:`Routing Guide
  92. <guide-routing>`.
  93. You can get a complete list of command-line arguments
  94. by passing in the `--help` flag:
  95. .. code-block:: console
  96. $ celery worker --help
  97. These options are described in more detailed in the :ref:`Workers Guide <guide-workers>`.
  98. Stopping the worker
  99. ~~~~~~~~~~~~~~~~~~~
  100. To stop the worker simply hit Ctrl+C. A list of signals supported
  101. by the worker is detailed in the :ref:`Workers Guide <guide-workers>`.
  102. In the background
  103. ~~~~~~~~~~~~~~~~~
  104. In production you will want to run the worker in the background, this is
  105. described in detail in the :ref:`daemonization tutorial <daemonizing>`.
  106. The daemonization scripts uses the :program:`celery multi` command to
  107. start one or more workers in the background:
  108. .. code-block:: console
  109. $ celery multi start w1 -A proj -l info
  110. celery multi v4.0.0 (0today8)
  111. > Starting nodes...
  112. > w1.halcyon.local: OK
  113. You can restart it too:
  114. .. code-block:: console
  115. $ celery multi restart w1 -A proj -l info
  116. celery multi v4.0.0 (0today8)
  117. > Stopping nodes...
  118. > w1.halcyon.local: TERM -> 64024
  119. > Waiting for 1 node.....
  120. > w1.halcyon.local: OK
  121. > Restarting node w1.halcyon.local: OK
  122. celery multi v4.0.0 (0today8)
  123. > Stopping nodes...
  124. > w1.halcyon.local: TERM -> 64052
  125. or stop it:
  126. .. code-block:: console
  127. $ celery multi stop w1 -A proj -l info
  128. The ``stop`` command is asynchronous so it will not wait for the
  129. worker to shutdown. You will probably want to use the ``stopwait`` command
  130. instead which will ensure all currently executing tasks is completed:
  131. .. code-block:: console
  132. $ celery multi stopwait w1 -A proj -l info
  133. .. note::
  134. :program:`celery multi` doesn't store information about workers
  135. so you need to use the same command-line arguments when
  136. restarting. Only the same pidfile and logfile arguments must be
  137. used when stopping.
  138. By default it will create pid and log files in the current directory,
  139. to protect against multiple workers launching on top of each other
  140. you are encouraged to put these in a dedicated directory:
  141. .. code-block:: console
  142. $ mkdir -p /var/run/celery
  143. $ mkdir -p /var/log/celery
  144. $ celery multi start w1 -A proj -l info --pidfile=/var/run/celery/%n.pid \
  145. --logfile=/var/log/celery/%n%I.log
  146. With the multi command you can start multiple workers, and there is a powerful
  147. command-line syntax to specify arguments for different workers too,
  148. e.g:
  149. .. code-block:: console
  150. $ celery multi start 10 -A proj -l info -Q:1-3 images,video -Q:4,5 data \
  151. -Q default -L:4,5 debug
  152. For more examples see the :mod:`~celery.bin.multi` module in the API
  153. reference.
  154. .. _app-argument:
  155. About the :option:`--app` argument
  156. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  157. The :option:`--app` argument specifies the Celery app instance to use,
  158. it must be in the form of ``module.path:attribute``
  159. But it also supports a shortcut form If only a package name is specified,
  160. where it'll try to search for the app instance, in the following order:
  161. With ``--app=proj``:
  162. 1) an attribute named ``proj.app``, or
  163. 2) an attribute named ``proj.celery``, or
  164. 3) any attribute in the module ``proj`` where the value is a Celery
  165. application, or
  166. If none of these are found it'll try a submodule named ``proj.celery``:
  167. 4) an attribute named ``proj.celery.app``, or
  168. 5) an attribute named ``proj.celery.celery``, or
  169. 6) Any atribute in the module ``proj.celery`` where the value is a Celery
  170. application.
  171. This scheme mimics the practices used in the documentation,
  172. i.e. ``proj:app`` for a single contained module, and ``proj.celery:app``
  173. for larger projects.
  174. .. _calling-tasks:
  175. Calling Tasks
  176. =============
  177. You can call a task using the :meth:`delay` method:
  178. .. code-block:: pycon
  179. >>> add.delay(2, 2)
  180. This method is actually a star-argument shortcut to another method called
  181. :meth:`apply_async`:
  182. .. code-block:: pycon
  183. >>> add.apply_async((2, 2))
  184. The latter enables you to specify execution options like the time to run
  185. (countdown), the queue it should be sent to and so on:
  186. .. code-block:: pycon
  187. >>> add.apply_async((2, 2), queue='lopri', countdown=10)
  188. In the above example the task will be sent to a queue named ``lopri`` and the
  189. task will execute, at the earliest, 10 seconds after the message was sent.
  190. Applying the task directly will execute the task in the current process,
  191. so that no message is sent:
  192. .. code-block:: pycon
  193. >>> add(2, 2)
  194. 4
  195. These three methods - :meth:`delay`, :meth:`apply_async`, and applying
  196. (``__call__``), represents the Celery calling API, which are also used for
  197. signatures.
  198. A more detailed overview of the Calling API can be found in the
  199. :ref:`Calling User Guide <guide-calling>`.
  200. Every task invocation will be given a unique identifier (an UUID), this
  201. is the task id.
  202. The ``delay`` and ``apply_async`` methods return an :class:`~@AsyncResult`
  203. instance, which can be used to keep track of the tasks execution state.
  204. But for this you need to enable a :ref:`result backend <task-result-backends>` so that
  205. the state can be stored somewhere.
  206. Results are disabled by default because of the fact that there is no result
  207. backend that suits every application, so to choose one you need to consider
  208. the drawbacks of each individual backend. For many tasks
  209. keeping the return value isn't even very useful, so it's a sensible default to
  210. have. Also note that result backends are not used for monitoring tasks and workers,
  211. for that Celery uses dedicated event messages (see :ref:`guide-monitoring`).
  212. If you have a result backend configured you can retrieve the return
  213. value of a task:
  214. .. code-block:: pycon
  215. >>> res = add.delay(2, 2)
  216. >>> res.get(timeout=1)
  217. 4
  218. You can find the task's id by looking at the :attr:`id` attribute:
  219. .. code-block:: pycon
  220. >>> res.id
  221. d6b3aea2-fb9b-4ebc-8da4-848818db9114
  222. You can also inspect the exception and traceback if the task raised an
  223. exception, in fact ``result.get()`` will propagate any errors by default:
  224. .. code-block:: pycon
  225. >>> res = add.delay(2)
  226. >>> res.get(timeout=1)
  227. .. code-block:: pytb
  228. Traceback (most recent call last):
  229. File "<stdin>", line 1, in <module>
  230. File "/opt/devel/celery/celery/result.py", line 113, in get
  231. interval=interval)
  232. File "/opt/devel/celery/celery/backends/amqp.py", line 138, in wait_for
  233. raise meta['result']
  234. TypeError: add() takes exactly 2 arguments (1 given)
  235. If you don't wish for the errors to propagate then you can disable that
  236. by passing the ``propagate`` argument:
  237. .. code-block:: pycon
  238. >>> res.get(propagate=False)
  239. TypeError('add() takes exactly 2 arguments (1 given)',)
  240. In this case it will return the exception instance raised instead,
  241. and so to check whether the task succeeded or failed you will have to
  242. use the corresponding methods on the result instance::
  243. >>> res.failed()
  244. True
  245. >>> res.successful()
  246. False
  247. So how does it know if the task has failed or not? It can find out by looking
  248. at the tasks *state*:
  249. .. code-block:: pycon
  250. >>> res.state
  251. 'FAILURE'
  252. A task can only be in a single state, but it can progress through several
  253. states. The stages of a typical task can be::
  254. PENDING -> STARTED -> SUCCESS
  255. The started state is a special state that is only recorded if the
  256. :setting:`CELERY_TRACK_STARTED` setting is enabled, or if the
  257. ``@task(track_started=True)`` option is set for the task.
  258. The pending state is actually not a recorded state, but rather
  259. the default state for any task id that is unknown, which you can see
  260. from this example:
  261. .. code-block:: pycon
  262. >>> from proj.celery import app
  263. >>> res = app.AsyncResult('this-id-does-not-exist')
  264. >>> res.state
  265. 'PENDING'
  266. If the task is retried the stages can become even more complex,
  267. e.g, for a task that is retried two times the stages would be::
  268. PENDING -> STARTED -> RETRY -> STARTED -> RETRY -> STARTED -> SUCCESS
  269. To read more about task states you should see the :ref:`task-states` section
  270. in the tasks user guide.
  271. Calling tasks is described in detail in the
  272. :ref:`Calling Guide <guide-calling>`.
  273. .. _designing-workflows:
  274. *Canvas*: Designing Workflows
  275. =============================
  276. You just learned how to call a task using the tasks ``delay`` method,
  277. and this is often all you need, but sometimes you may want to pass the
  278. signature of a task invocation to another process or as an argument to another
  279. function, for this Celery uses something called *signatures*.
  280. A signature wraps the arguments and execution options of a single task
  281. invocation in a way such that it can be passed to functions or even serialized
  282. and sent across the wire.
  283. You can create a signature for the ``add`` task using the arguments ``(2, 2)``,
  284. and a countdown of 10 seconds like this:
  285. .. code-block:: pycon
  286. >>> add.signature((2, 2), countdown=10)
  287. tasks.add(2, 2)
  288. There is also a shortcut using star arguments:
  289. .. code-block:: pycon
  290. >>> add.s(2, 2)
  291. tasks.add(2, 2)
  292. And there's that calling API again…
  293. -----------------------------------
  294. Signature instances also supports the calling API, which means that they
  295. have the ``delay`` and ``apply_async`` methods.
  296. But there is a difference in that the signature may already have
  297. an argument signature specified. The ``add`` task takes two arguments,
  298. so a signature specifying two arguments would make a complete signature:
  299. .. code-block:: pycon
  300. >>> s1 = add.s(2, 2)
  301. >>> res = s1.delay()
  302. >>> res.get()
  303. 4
  304. But, you can also make incomplete signatures to create what we call
  305. *partials*:
  306. .. code-block:: pycon
  307. # incomplete partial: add(?, 2)
  308. >>> s2 = add.s(2)
  309. ``s2`` is now a partial signature that needs another argument to be complete,
  310. and this can be resolved when calling the signature:
  311. .. code-block:: pycon
  312. # resolves the partial: add(8, 2)
  313. >>> res = s2.delay(8)
  314. >>> res.get()
  315. 10
  316. Here you added the argument 8, which was prepended to the existing argument 2
  317. forming a complete signature of ``add(8, 2)``.
  318. Keyword arguments can also be added later, these are then merged with any
  319. existing keyword arguments, but with new arguments taking precedence:
  320. .. code-block:: pycon
  321. >>> s3 = add.s(2, 2, debug=True)
  322. >>> s3.delay(debug=False) # debug is now False.
  323. As stated signatures supports the calling API, which means that:
  324. - ``sig.apply_async(args=(), kwargs={}, **options)``
  325. Calls the signature with optional partial arguments and partial
  326. keyword arguments. Also supports partial execution options.
  327. - ``sig.delay(*args, **kwargs)``
  328. Star argument version of ``apply_async``. Any arguments will be prepended
  329. to the arguments in the signature, and keyword arguments is merged with any
  330. existing keys.
  331. So this all seems very useful, but what can you actually do with these?
  332. To get to that I must introduce the canvas primitives…
  333. The Primitives
  334. --------------
  335. .. topic:: \
  336. .. hlist::
  337. :columns: 2
  338. - :ref:`group <canvas-group>`
  339. - :ref:`chain <canvas-chain>`
  340. - :ref:`chord <canvas-chord>`
  341. - :ref:`map <canvas-map>`
  342. - :ref:`starmap <canvas-map>`
  343. - :ref:`chunks <canvas-chunks>`
  344. These primitives are signature objects themselves, so they can be combined
  345. in any number of ways to compose complex workflows.
  346. .. note::
  347. These examples retrieve results, so to try them out you need
  348. to configure a result backend. The example project
  349. above already does that (see the backend argument to :class:`~celery.Celery`).
  350. Let's look at some examples:
  351. Groups
  352. ~~~~~~
  353. A :class:`~celery.group` calls a list of tasks in parallel,
  354. and it returns a special result instance that lets you inspect the results
  355. as a group, and retrieve the return values in order.
  356. .. code-block:: pycon
  357. >>> from celery import group
  358. >>> from proj.tasks import add
  359. >>> group(add.s(i, i) for i in xrange(10))().get()
  360. [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  361. - Partial group
  362. .. code-block:: pycon
  363. >>> g = group(add.s(i) for i in xrange(10))
  364. >>> g(10).get()
  365. [10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
  366. Chains
  367. ~~~~~~
  368. Tasks can be linked together so that after one task returns the other
  369. is called:
  370. .. code-block:: pycon
  371. >>> from celery import chain
  372. >>> from proj.tasks import add, mul
  373. # (4 + 4) * 8
  374. >>> chain(add.s(4, 4) | mul.s(8))().get()
  375. 64
  376. or a partial chain:
  377. .. code-block:: pycon
  378. >>> # (? + 4) * 8
  379. >>> g = chain(add.s(4) | mul.s(8))
  380. >>> g(4).get()
  381. 64
  382. Chains can also be written like this:
  383. .. code-block:: pycon
  384. >>> (add.s(4, 4) | mul.s(8))().get()
  385. 64
  386. Chords
  387. ~~~~~~
  388. A chord is a group with a callback:
  389. .. code-block:: pycon
  390. >>> from celery import chord
  391. >>> from proj.tasks import add, xsum
  392. >>> chord((add.s(i, i) for i in xrange(10)), xsum.s())().get()
  393. 90
  394. A group chained to another task will be automatically converted
  395. to a chord:
  396. .. code-block:: pycon
  397. >>> (group(add.s(i, i) for i in xrange(10)) | xsum.s())().get()
  398. 90
  399. Since these primitives are all of the signature type they
  400. can be combined almost however you want, e.g::
  401. >>> upload_document.s(file) | group(apply_filter.s() for filter in filters)
  402. Be sure to read more about workflows in the :ref:`Canvas <guide-canvas>` user
  403. guide.
  404. Routing
  405. =======
  406. Celery supports all of the routing facilities provided by AMQP,
  407. but it also supports simple routing where messages are sent to named queues.
  408. The :setting:`CELERY_ROUTES` setting enables you to route tasks by name
  409. and keep everything centralized in one location:
  410. .. code-block:: python
  411. app.conf.update(
  412. CELERY_ROUTES = {
  413. 'proj.tasks.add': {'queue': 'hipri'},
  414. },
  415. )
  416. You can also specify the queue at runtime
  417. with the ``queue`` argument to ``apply_async``:
  418. .. code-block:: pycon
  419. >>> from proj.tasks import add
  420. >>> add.apply_async((2, 2), queue='hipri')
  421. You can then make a worker consume from this queue by
  422. specifying the :option:`-Q` option:
  423. .. code-block:: console
  424. $ celery -A proj worker -Q hipri
  425. You may specify multiple queues by using a comma separated list,
  426. for example you can make the worker consume from both the default
  427. queue, and the ``hipri`` queue, where
  428. the default queue is named ``celery`` for historical reasons:
  429. .. code-block:: console
  430. $ celery -A proj worker -Q hipri,celery
  431. The order of the queues doesn't matter as the worker will
  432. give equal weight to the queues.
  433. To learn more about routing, including taking use of the full
  434. power of AMQP routing, see the :ref:`Routing Guide <guide-routing>`.
  435. Remote Control
  436. ==============
  437. If you're using RabbitMQ (AMQP), Redis or MongoDB as the broker then
  438. you can control and inspect the worker at runtime.
  439. For example you can see what tasks the worker is currently working on:
  440. .. code-block:: console
  441. $ celery -A proj inspect active
  442. This is implemented by using broadcast messaging, so all remote
  443. control commands are received by every worker in the cluster.
  444. You can also specify one or more workers to act on the request
  445. using the :option:`--destination` option, which is a comma separated
  446. list of worker host names:
  447. .. code-block:: console
  448. $ celery -A proj inspect active --destination=celery@example.com
  449. If a destination is not provided then every worker will act and reply
  450. to the request.
  451. The :program:`celery inspect` command contains commands that
  452. does not change anything in the worker, it only replies information
  453. and statistics about what is going on inside the worker.
  454. For a list of inspect commands you can execute:
  455. .. code-block:: console
  456. $ celery -A proj inspect --help
  457. Then there is the :program:`celery control` command, which contains
  458. commands that actually changes things in the worker at runtime:
  459. .. code-block:: console
  460. $ celery -A proj control --help
  461. For example you can force workers to enable event messages (used
  462. for monitoring tasks and workers):
  463. .. code-block:: console
  464. $ celery -A proj control enable_events
  465. When events are enabled you can then start the event dumper
  466. to see what the workers are doing:
  467. .. code-block:: console
  468. $ celery -A proj events --dump
  469. or you can start the curses interface:
  470. .. code-block:: console
  471. $ celery -A proj events
  472. when you're finished monitoring you can disable events again:
  473. .. code-block:: console
  474. $ celery -A proj control disable_events
  475. The :program:`celery status` command also uses remote control commands
  476. and shows a list of online workers in the cluster:
  477. .. code-block:: console
  478. $ celery -A proj status
  479. You can read more about the :program:`celery` command and monitoring
  480. in the :ref:`Monitoring Guide <guide-monitoring>`.
  481. Timezone
  482. ========
  483. All times and dates, internally and in messages uses the UTC timezone.
  484. When the worker receives a message, for example with a countdown set it
  485. converts that UTC time to local time. If you wish to use
  486. a different timezone than the system timezone then you must
  487. configure that using the :setting:`CELERY_TIMEZONE` setting:
  488. .. code-block:: python
  489. app.conf.CELERY_TIMEZONE = 'Europe/London'
  490. Optimization
  491. ============
  492. The default configuration is not optimized for throughput by default,
  493. it tries to walk the middle way between many short tasks and fewer long
  494. tasks, a compromise between throughput and fair scheduling.
  495. If you have strict fair scheduling requirements, or want to optimize
  496. for throughput then you should read the :ref:`Optimizing Guide
  497. <guide-optimizing>`.
  498. If you're using RabbitMQ then you should install the :mod:`librabbitmq`
  499. module, which is an AMQP client implemented in C:
  500. .. code-block:: console
  501. $ pip install librabbitmq
  502. What to do now?
  503. ===============
  504. Now that you have read this document you should continue
  505. to the :ref:`User Guide <guide>`.
  506. There's also an :ref:`API reference <apiref>` if you are so inclined.