canvas.rst 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068
  1. .. _guide-canvas:
  2. ==============================
  3. Canvas: Designing Work-flows
  4. ==============================
  5. .. contents::
  6. :local:
  7. :depth: 2
  8. .. _canvas-subtasks:
  9. .. _canvas-signatures:
  10. Signatures
  11. ==========
  12. .. versionadded:: 2.0
  13. You just learned how to call a task using the tasks ``delay`` method
  14. in the :ref:`calling <guide-calling>` guide, and this is often all you need,
  15. but sometimes you may want to pass the signature of a task invocation to
  16. another process or as an argument to another function.
  17. A :func:`~celery.signature` wraps the arguments, keyword arguments, and execution options
  18. of a single task invocation in a way such that it can be passed to functions
  19. or even serialized and sent across the wire.
  20. - You can create a signature for the ``add`` task using its name like this:
  21. .. code-block:: pycon
  22. >>> from celery import signature
  23. >>> signature('tasks.add', args=(2, 2), countdown=10)
  24. tasks.add(2, 2)
  25. This task has a signature of arity 2 (two arguments): ``(2, 2)``,
  26. and sets the countdown execution option to 10.
  27. - or you can create one using the task's ``signature`` method:
  28. .. code-block:: pycon
  29. >>> add.signature((2, 2), countdown=10)
  30. tasks.add(2, 2)
  31. - There's also a shortcut using star arguments:
  32. .. code-block:: pycon
  33. >>> add.s(2, 2)
  34. tasks.add(2, 2)
  35. - Keyword arguments are also supported:
  36. .. code-block:: pycon
  37. >>> add.s(2, 2, debug=True)
  38. tasks.add(2, 2, debug=True)
  39. - From any signature instance you can inspect the different fields:
  40. .. code-block:: pycon
  41. >>> s = add.signature((2, 2), {'debug': True}, countdown=10)
  42. >>> s.args
  43. (2, 2)
  44. >>> s.kwargs
  45. {'debug': True}
  46. >>> s.options
  47. {'countdown': 10}
  48. - It supports the "Calling API" of ``delay``,
  49. ``apply_async``, etc., including being called directly (``__call__``).
  50. Calling the signature will execute the task inline in the current process:
  51. .. code-block:: pycon
  52. >>> add(2, 2)
  53. 4
  54. >>> add.s(2, 2)()
  55. 4
  56. ``delay`` is our beloved shortcut to ``apply_async`` taking star-arguments:
  57. .. code-block:: pycon
  58. >>> result = add.delay(2, 2)
  59. >>> result.get()
  60. 4
  61. ``apply_async`` takes the same arguments as the
  62. :meth:`Task.apply_async <@Task.apply_async>` method:
  63. .. code-block:: pycon
  64. >>> add.apply_async(args, kwargs, **options)
  65. >>> add.signature(args, kwargs, **options).apply_async()
  66. >>> add.apply_async((2, 2), countdown=1)
  67. >>> add.signature((2, 2), countdown=1).apply_async()
  68. - You can't define options with :meth:`~@Task.s`, but a chaining
  69. ``set`` call takes care of that:
  70. .. code-block:: pycon
  71. >>> add.s(2, 2).set(countdown=1)
  72. proj.tasks.add(2, 2)
  73. Partials
  74. --------
  75. With a signature, you can execute the task in a worker:
  76. .. code-block:: pycon
  77. >>> add.s(2, 2).delay()
  78. >>> add.s(2, 2).apply_async(countdown=1)
  79. Or you can call it directly in the current process:
  80. .. code-block:: pycon
  81. >>> add.s(2, 2)()
  82. 4
  83. Specifying additional args, kwargs, or options to ``apply_async``/``delay``
  84. creates partials:
  85. - Any arguments added will be prepended to the args in the signature:
  86. .. code-block:: pycon
  87. >>> partial = add.s(2) # incomplete signature
  88. >>> partial.delay(4) # 4 + 2
  89. >>> partial.apply_async((4,)) # same
  90. - Any keyword arguments added will be merged with the kwargs in the signature,
  91. with the new keyword arguments taking precedence:
  92. .. code-block:: pycon
  93. >>> s = add.s(2, 2)
  94. >>> s.delay(debug=True) # -> add(2, 2, debug=True)
  95. >>> s.apply_async(kwargs={'debug': True}) # same
  96. - Any options added will be merged with the options in the signature,
  97. with the new options taking precedence:
  98. .. code-block:: pycon
  99. >>> s = add.signature((2, 2), countdown=10)
  100. >>> s.apply_async(countdown=1) # countdown is now 1
  101. You can also clone signatures to create derivatives:
  102. .. code-block:: pycon
  103. >>> s = add.s(2)
  104. proj.tasks.add(2)
  105. >>> s.clone(args=(4,), kwargs={'debug': True})
  106. proj.tasks.add(4, 2, debug=True)
  107. Immutability
  108. ------------
  109. .. versionadded:: 3.0
  110. Partials are meant to be used with callbacks, any tasks linked, or chord
  111. callbacks will be applied with the result of the parent task.
  112. Sometimes you want to specify a callback that doesn't take
  113. additional arguments, and in that case you can set the signature
  114. to be immutable:
  115. .. code-block:: pycon
  116. >>> add.apply_async((2, 2), link=reset_buffers.signature(immutable=True))
  117. The ``.si()`` shortcut can also be used to create immutable signatures:
  118. .. code-block:: pycon
  119. >>> add.apply_async((2, 2), link=reset_buffers.si())
  120. Only the execution options can be set when a signature is immutable,
  121. so it's not possible to call the signature with partial args/kwargs.
  122. .. note::
  123. In this tutorial I sometimes use the prefix operator `~` to signatures.
  124. You probably shouldn't use it in your production code, but it's a handy shortcut
  125. when experimenting in the Python shell:
  126. .. code-block:: pycon
  127. >>> ~sig
  128. >>> # is the same as
  129. >>> sig.delay().get()
  130. .. _canvas-callbacks:
  131. Callbacks
  132. ---------
  133. .. versionadded:: 3.0
  134. Callbacks can be added to any task using the ``link`` argument
  135. to ``apply_async``:
  136. .. code-block:: pycon
  137. add.apply_async((2, 2), link=other_task.s())
  138. The callback will only be applied if the task exited successfully,
  139. and it will be applied with the return value of the parent task as argument.
  140. As I mentioned earlier, any arguments you add to a signature,
  141. will be prepended to the arguments specified by the signature itself!
  142. If you have the signature:
  143. .. code-block:: pycon
  144. >>> sig = add.s(10)
  145. then `sig.delay(result)` becomes:
  146. .. code-block:: pycon
  147. >>> add.apply_async(args=(result, 10))
  148. ...
  149. Now let's call our ``add`` task with a callback using partial
  150. arguments:
  151. .. code-block:: pycon
  152. >>> add.apply_async((2, 2), link=add.s(8))
  153. As expected this will first launch one task calculating :math:`2 + 2`, then
  154. another task calculating :math:`4 + 8`.
  155. The Primitives
  156. ==============
  157. .. versionadded:: 3.0
  158. .. topic:: Overview
  159. - ``group``
  160. The group primitive is a signature that takes a list of tasks that should
  161. be applied in parallel.
  162. - ``chain``
  163. The chain primitive lets us link together signatures so that one is called
  164. after the other, essentially forming a *chain* of callbacks.
  165. - ``chord``
  166. A chord is just like a group but with a callback. A chord consists
  167. of a header group and a body, where the body is a task that should execute
  168. after all of the tasks in the header are complete.
  169. - ``map``
  170. The map primitive works like the built-in ``map`` function, but creates
  171. a temporary task where a list of arguments is applied to the task.
  172. E.g. ``task.map([1, 2])`` results in a single task
  173. being called, applying the arguments in order to the task function so
  174. that the result is:
  175. .. code-block:: python
  176. res = [task(1), task(2)]
  177. - ``starmap``
  178. Works exactly like map except the arguments are applied as ``*args``.
  179. For example ``add.starmap([(2, 2), (4, 4)])`` results in a single
  180. task calling:
  181. .. code-block:: python
  182. res = [add(2, 2), add(4, 4)]
  183. - ``chunks``
  184. Chunking splits a long list of arguments into parts, e.g the operation:
  185. .. code-block:: pycon
  186. >>> items = zip(xrange(1000), xrange(1000)) # 1000 items
  187. >>> add.chunks(items, 10)
  188. will split the list of items into chunks of 10, resulting in 100
  189. tasks (each processing 10 items in sequence).
  190. The primitives are also signature objects themselves, so that they can be combined
  191. in any number of ways to compose complex work-flows.
  192. Here's some examples:
  193. - Simple chain
  194. Here's a simple chain, the first task executes passing its return value
  195. to the next task in the chain, and so on.
  196. .. code-block:: pycon
  197. >>> from celery import chain
  198. >>> # 2 + 2 + 4 + 8
  199. >>> res = chain(add.s(2, 2), add.s(4), add.s(8))()
  200. >>> res.get()
  201. 16
  202. This can also be written using pipes:
  203. .. code-block:: pycon
  204. >>> (add.s(2, 2) | add.s(4) | add.s(8))().get()
  205. 16
  206. - Immutable signatures
  207. Signatures can be partial so arguments can be
  208. added to the existing arguments, but you may not always want that,
  209. for example if you don't want the result of the previous task in a chain.
  210. In that case you can mark the signature as immutable, so that the arguments
  211. cannot be changed:
  212. .. code-block:: pycon
  213. >>> add.signature((2, 2), immutable=True)
  214. There's also a ``.si()`` shortcut for this, and this is the preffered way of
  215. creating signatures:
  216. .. code-block:: pycon
  217. >>> add.si(2, 2)
  218. Now you can create a chain of independent tasks instead:
  219. .. code-block:: pycon
  220. >>> res = (add.si(2, 2) | add.si(4, 4) | add.s(8, 8))()
  221. >>> res.get()
  222. 16
  223. >>> res.parent.get()
  224. 8
  225. >>> res.parent.parent.get()
  226. 4
  227. - Simple group
  228. You can easily create a group of tasks to execute in parallel:
  229. .. code-block:: pycon
  230. >>> from celery import group
  231. >>> res = group(add.s(i, i) for i in xrange(10))()
  232. >>> res.get(timeout=1)
  233. [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  234. - Simple chord
  235. The chord primitive enables us to add a callback to be called when
  236. all of the tasks in a group have finished executing. This is often
  237. required for algorithms that aren't *embarrassingly parallel*:
  238. .. code-block:: pycon
  239. >>> from celery import chord
  240. >>> res = chord((add.s(i, i) for i in xrange(10)), xsum.s())()
  241. >>> res.get()
  242. 90
  243. The above example creates 10 task that all start in parallel,
  244. and when all of them are complete the return values are combined
  245. into a list and sent to the ``xsum`` task.
  246. The body of a chord can also be immutable, so that the return value
  247. of the group isn't passed on to the callback:
  248. .. code-block:: pycon
  249. >>> chord((import_contact.s(c) for c in contacts),
  250. ... notify_complete.si(import_id)).apply_async()
  251. Note the use of ``.si`` above; this creates an immutable signature,
  252. meaning any new arguments passed (including to return value of the
  253. previous task) will be ignored.
  254. - Blow your mind by combining
  255. Chains can be partial too:
  256. .. code-block:: pycon
  257. >>> c1 = (add.s(4) | mul.s(8))
  258. # (16 + 4) * 8
  259. >>> res = c1(16)
  260. >>> res.get()
  261. 160
  262. this means that you can combine chains:
  263. .. code-block:: pycon
  264. # ((4 + 16) * 2 + 4) * 8
  265. >>> c2 = (add.s(4, 16) | mul.s(2) | (add.s(4) | mul.s(8)))
  266. >>> res = c2()
  267. >>> res.get()
  268. 352
  269. Chaining a group together with another task will automatically
  270. upgrade it to be a chord:
  271. .. code-block:: pycon
  272. >>> c3 = (group(add.s(i, i) for i in xrange(10)) | xsum.s())
  273. >>> res = c3()
  274. >>> res.get()
  275. 90
  276. Groups and chords accepts partial arguments too, so in a chain
  277. the return value of the previous task is forwarded to all tasks in the group:
  278. .. code-block:: pycon
  279. >>> new_user_workflow = (create_user.s() | group(
  280. ... import_contacts.s(),
  281. ... send_welcome_email.s()))
  282. ... new_user_workflow.delay(username='artv',
  283. ... first='Art',
  284. ... last='Vandelay',
  285. ... email='art@vandelay.com')
  286. If you don't want to forward arguments to the group then
  287. you can make the signatures in the group immutable:
  288. .. code-block:: pycon
  289. >>> res = (add.s(4, 4) | group(add.si(i, i) for i in xrange(10)))()
  290. >>> res.get()
  291. <GroupResult: de44df8c-821d-4c84-9a6a-44769c738f98 [
  292. bc01831b-9486-4e51-b046-480d7c9b78de,
  293. 2650a1b8-32bf-4771-a645-b0a35dcc791b,
  294. dcbee2a5-e92d-4b03-b6eb-7aec60fd30cf,
  295. 59f92e0a-23ea-41ce-9fad-8645a0e7759c,
  296. 26e1e707-eccf-4bf4-bbd8-1e1729c3cce3,
  297. 2d10a5f4-37f0-41b2-96ac-a973b1df024d,
  298. e13d3bdb-7ae3-4101-81a4-6f17ee21df2d,
  299. 104b2be0-7b75-44eb-ac8e-f9220bdfa140,
  300. c5c551a5-0386-4973-aa37-b65cbeb2624b,
  301. 83f72d71-4b71-428e-b604-6f16599a9f37]>
  302. >>> res.parent.get()
  303. 8
  304. .. _canvas-chain:
  305. Chains
  306. ------
  307. .. versionadded:: 3.0
  308. Tasks can be linked together: the linked task is called when the task
  309. returns successfully:
  310. .. code-block:: pycon
  311. >>> res = add.apply_async((2, 2), link=mul.s(16))
  312. >>> res.get()
  313. 4
  314. The linked task will be applied with the result of its parent
  315. task as the first argument. In the above case where the result was 4,
  316. this will result in ``mul(4, 16)``.
  317. The results will keep track of any subtasks called by the original task,
  318. and this can be accessed from the result instance:
  319. .. code-block:: pycon
  320. >>> res.children
  321. [<AsyncResult: 8c350acf-519d-4553-8a53-4ad3a5c5aeb4>]
  322. >>> res.children[0].get()
  323. 64
  324. The result instance also has a :meth:`~@AsyncResult.collect` method
  325. that treats the result as a graph, enabling you to iterate over
  326. the results:
  327. .. code-block:: pycon
  328. >>> list(res.collect())
  329. [(<AsyncResult: 7b720856-dc5f-4415-9134-5c89def5664e>, 4),
  330. (<AsyncResult: 8c350acf-519d-4553-8a53-4ad3a5c5aeb4>, 64)]
  331. By default :meth:`~@AsyncResult.collect` will raise an
  332. :exc:`~@IncompleteStream` exception if the graph isn't fully
  333. formed (one of the tasks hasn't completed yet),
  334. but you can get an intermediate representation of the graph
  335. too:
  336. .. code-block:: pycon
  337. >>> for result, value in res.collect(intermediate=True)):
  338. ....
  339. You can link together as many tasks as you like,
  340. and signatures can be linked too:
  341. .. code-block:: pycon
  342. >>> s = add.s(2, 2)
  343. >>> s.link(mul.s(4))
  344. >>> s.link(log_result.s())
  345. You can also add *error callbacks* using the `on_error` method:
  346. .. code-block:: pycon
  347. >>> add.s(2, 2).on_error(log_error.s()).delay()
  348. This will result in the following ``.apply_async`` call when the signature
  349. is applied:
  350. .. code-block:: pycon
  351. >>> add.apply_async((2, 2), link_error=log_error.s())
  352. The worker won't actually call the errback as a task, but will
  353. instead call the errback function directly so that the raw request, exception
  354. and traceback objects can be passed to it.
  355. Here's an example errback:
  356. .. code-block:: python
  357. from __future__ import print_function
  358. import os
  359. from proj.celery import app
  360. @app.task
  361. def log_error(request, exc, traceback):
  362. with open(os.path.join('/var/errors', request.id), 'a') as fh:
  363. print('--\n\n{0} {1} {2}'.format(
  364. task_id, exc, traceback), file=fh)
  365. To make it even easier to link tasks together there's
  366. a special signature called :class:`~celery.chain` that lets
  367. you chain tasks together:
  368. .. code-block:: pycon
  369. >>> from celery import chain
  370. >>> from proj.tasks import add, mul
  371. >>> # (4 + 4) * 8 * 10
  372. >>> res = chain(add.s(4, 4), mul.s(8), mul.s(10))
  373. proj.tasks.add(4, 4) | proj.tasks.mul(8) | proj.tasks.mul(10)
  374. Calling the chain will call the tasks in the current process
  375. and return the result of the last task in the chain:
  376. .. code-block:: pycon
  377. >>> res = chain(add.s(4, 4), mul.s(8), mul.s(10))()
  378. >>> res.get()
  379. 640
  380. It also sets ``parent`` attributes so that you can
  381. work your way up the chain to get intermediate results:
  382. .. code-block:: pycon
  383. >>> res.parent.get()
  384. 64
  385. >>> res.parent.parent.get()
  386. 8
  387. >>> res.parent.parent
  388. <AsyncResult: eeaad925-6778-4ad1-88c8-b2a63d017933>
  389. Chains can also be made using the ``|`` (pipe) operator:
  390. .. code-block:: pycon
  391. >>> (add.s(2, 2) | mul.s(8) | mul.s(10)).apply_async()
  392. Graphs
  393. ~~~~~~
  394. In addition you can work with the result graph as a
  395. :class:`~celery.utils.graph.DependencyGraph`:
  396. .. code-block:: pycon
  397. >>> res = chain(add.s(4, 4), mul.s(8), mul.s(10))()
  398. >>> res.parent.parent.graph
  399. 285fa253-fcf8-42ef-8b95-0078897e83e6(1)
  400. 463afec2-5ed4-4036-b22d-ba067ec64f52(0)
  401. 872c3995-6fa0-46ca-98c2-5a19155afcf0(2)
  402. 285fa253-fcf8-42ef-8b95-0078897e83e6(1)
  403. 463afec2-5ed4-4036-b22d-ba067ec64f52(0)
  404. You can even convert these graphs to *dot* format:
  405. .. code-block:: pycon
  406. >>> with open('graph.dot', 'w') as fh:
  407. ... res.parent.parent.graph.to_dot(fh)
  408. and create images:
  409. .. code-block:: console
  410. $ dot -Tpng graph.dot -o graph.png
  411. .. image:: ../images/result_graph.png
  412. .. _canvas-group:
  413. Groups
  414. ------
  415. .. versionadded:: 3.0
  416. A group can be used to execute several tasks in parallel.
  417. The :class:`~celery.group` function takes a list of signatures:
  418. .. code-block:: pycon
  419. >>> from celery import group
  420. >>> from proj.tasks import add
  421. >>> group(add.s(2, 2), add.s(4, 4))
  422. (proj.tasks.add(2, 2), proj.tasks.add(4, 4))
  423. If you **call** the group, the tasks will be applied
  424. one after another in the current process, and a :class:`~celery.result.GroupResult`
  425. instance is returned that can be used to keep track of the results,
  426. or tell how many tasks are ready and so on:
  427. .. code-block:: pycon
  428. >>> g = group(add.s(2, 2), add.s(4, 4))
  429. >>> res = g()
  430. >>> res.get()
  431. [4, 8]
  432. Group also supports iterators:
  433. .. code-block:: pycon
  434. >>> group(add.s(i, i) for i in xrange(100))()
  435. A group is a signature object, so it can be used in combination
  436. with other signatures.
  437. Group Results
  438. ~~~~~~~~~~~~~
  439. The group task returns a special result too,
  440. this result works just like normal task results, except
  441. that it works on the group as a whole:
  442. .. code-block:: pycon
  443. >>> from celery import group
  444. >>> from tasks import add
  445. >>> job = group([
  446. ... add.s(2, 2),
  447. ... add.s(4, 4),
  448. ... add.s(8, 8),
  449. ... add.s(16, 16),
  450. ... add.s(32, 32),
  451. ... ])
  452. >>> result = job.apply_async()
  453. >>> result.ready() # have all subtasks completed?
  454. True
  455. >>> result.successful() # were all subtasks successful?
  456. True
  457. >>> result.get()
  458. [4, 8, 16, 32, 64]
  459. The :class:`~celery.result.GroupResult` takes a list of
  460. :class:`~celery.result.AsyncResult` instances and operates on them as
  461. if it was a single task.
  462. It supports the following operations:
  463. * :meth:`~celery.result.GroupResult.successful`
  464. Return :const:`True` if all of the subtasks finished
  465. successfully (e.g. didn't raise an exception).
  466. * :meth:`~celery.result.GroupResult.failed`
  467. Return :const:`True` if any of the subtasks failed.
  468. * :meth:`~celery.result.GroupResult.waiting`
  469. Return :const:`True` if any of the subtasks
  470. isn't ready yet.
  471. * :meth:`~celery.result.GroupResult.ready`
  472. Return :const:`True` if all of the subtasks
  473. are ready.
  474. * :meth:`~celery.result.GroupResult.completed_count`
  475. Return the number of completed subtasks.
  476. * :meth:`~celery.result.GroupResult.revoke`
  477. Revoke all of the subtasks.
  478. * :meth:`~celery.result.GroupResult.join`
  479. Gather the results of all subtasks
  480. and return them in the same order as they were called (as a list).
  481. .. _canvas-chord:
  482. Chords
  483. ------
  484. .. versionadded:: 2.3
  485. .. note::
  486. Tasks used within a chord must *not* ignore their results. If the result
  487. backend is disabled for *any* task (header or body) in your chord you
  488. should read ":ref:`chord-important-notes`."
  489. A chord is a task that only executes after all of the tasks in a group have
  490. finished executing.
  491. Let's calculate the sum of the expression
  492. :math:`1 + 1 + 2 + 2 + 3 + 3 ... n + n` up to a hundred digits.
  493. First you need two tasks, :func:`add` and :func:`tsum` (:func:`sum` is
  494. already a standard function):
  495. .. code-block:: python
  496. @app.task
  497. def add(x, y):
  498. return x + y
  499. @app.task
  500. def tsum(numbers):
  501. return sum(numbers)
  502. Now you can use a chord to calculate each addition step in parallel, and then
  503. get the sum of the resulting numbers:
  504. .. code-block:: pycon
  505. >>> from celery import chord
  506. >>> from tasks import add, tsum
  507. >>> chord(add.s(i, i)
  508. ... for i in xrange(100))(tsum.s()).get()
  509. 9900
  510. This is obviously a very contrived example, the overhead of messaging and
  511. synchronization makes this a lot slower than its Python counterpart:
  512. .. code-block:: pycon
  513. >>> sum(i + i for i in xrange(100))
  514. The synchronization step is costly, so you should avoid using chords as much
  515. as possible. Still, the chord is a powerful primitive to have in your toolbox
  516. as synchronization is a required step for many parallel algorithms.
  517. Let's break the chord expression down:
  518. .. code-block:: pycon
  519. >>> callback = tsum.s()
  520. >>> header = [add.s(i, i) for i in range(100)]
  521. >>> result = chord(header)(callback)
  522. >>> result.get()
  523. 9900
  524. Remember, the callback can only be executed after all of the tasks in the
  525. header have returned. Each step in the header is executed as a task, in
  526. parallel, possibly on different nodes. The callback is then applied with
  527. the return value of each task in the header. The task id returned by
  528. :meth:`chord` is the id of the callback, so you can wait for it to complete
  529. and get the final return value (but remember to :ref:`never have a task wait
  530. for other tasks <task-synchronous-subtasks>`)
  531. .. _chord-errors:
  532. Error handling
  533. ~~~~~~~~~~~~~~
  534. So what happens if one of the tasks raises an exception?
  535. The chord callback result will transition to the failure state, and the error is set
  536. to the :exc:`~@ChordError` exception:
  537. .. code-block:: pycon
  538. >>> c = chord([add.s(4, 4), raising_task.s(), add.s(8, 8)])
  539. >>> result = c()
  540. >>> result.get()
  541. .. code-block:: pytb
  542. Traceback (most recent call last):
  543. File "<stdin>", line 1, in <module>
  544. File "*/celery/result.py", line 120, in get
  545. interval=interval)
  546. File "*/celery/backends/amqp.py", line 150, in wait_for
  547. raise meta['result']
  548. celery.exceptions.ChordError: Dependency 97de6f3f-ea67-4517-a21c-d867c61fcb47
  549. raised ValueError('something something',)
  550. While the traceback may be different depending on the result backend used,
  551. you can see that the error description includes the id of the task that failed
  552. and a string representation of the original exception. You can also
  553. find the original traceback in ``result.traceback``.
  554. Note that the rest of the tasks will still execute, so the third task
  555. (``add.s(8, 8)``) is still executed even though the middle task failed.
  556. Also the :exc:`~@ChordError` only shows the task that failed
  557. first (in time): it doesn't respect the ordering of the header group.
  558. To perform an action when a chord fails you can therefore attach
  559. an errback to the chord callback:
  560. .. code-block:: python
  561. @app.task
  562. def on_chord_error(request, exc, traceback):
  563. print('Task {0!r} raised error: {1!r}'.format(request.id, exc))
  564. .. code-block:: pycon
  565. >>> c = (group(add.s(i, i) for i in range(10)) |
  566. ... xsum.s().on_error(on_chord_error.s()))).delay()
  567. .. _chord-important-notes:
  568. Important Notes
  569. ~~~~~~~~~~~~~~~
  570. Tasks used within a chord must *not* ignore their results. In practice this
  571. means that you must enable a :const:`result_backend` in order to use
  572. chords. Additionally, if :const:`task_ignore_result` is set to :const:`True`
  573. in your configuration, be sure that the individual tasks to be used within
  574. the chord are defined with :const:`ignore_result=False`. This applies to both
  575. Task subclasses and decorated tasks.
  576. Example Task subclass:
  577. .. code-block:: python
  578. class MyTask(Task):
  579. ignore_result = False
  580. Example decorated task:
  581. .. code-block:: python
  582. @app.task(ignore_result=False)
  583. def another_task(project):
  584. do_something()
  585. By default the synchronization step is implemented by having a recurring task
  586. poll the completion of the group every second, calling the signature when
  587. ready.
  588. Example implementation:
  589. .. code-block:: python
  590. from celery import maybe_signature
  591. @app.task(bind=True)
  592. def unlock_chord(self, group, callback, interval=1, max_retries=None):
  593. if group.ready():
  594. return maybe_signature(callback).delay(group.join())
  595. raise self.retry(countdown=interval, max_retries=max_retries)
  596. This is used by all result backends except Redis and Memcached: they
  597. increment a counter after each task in the header, then applies the callback
  598. when the counter exceeds the number of tasks in the set. *Note:* chords don't
  599. properly work with Redis before version 2.2; you'll need to upgrade to at
  600. least *redis-server* 2.2 to use them.
  601. The Redis and Memcached approach is a much better solution, but not easily
  602. implemented in other backends (suggestions welcome!).
  603. .. note::
  604. If you're using chords with the Redis result backend and also overriding
  605. the :meth:`Task.after_return` method, you need to make sure to call the
  606. super method or else the chord callback won't be applied.
  607. .. code-block:: python
  608. def after_return(self, *args, **kwargs):
  609. do_something()
  610. super(MyTask, self).after_return(*args, **kwargs)
  611. .. _canvas-map:
  612. Map & Starmap
  613. -------------
  614. :class:`~celery.map` and :class:`~celery.starmap` are built-in tasks
  615. that calls the task for every element in a sequence.
  616. They differ from group in that
  617. - only one task message is sent
  618. - the operation is sequential.
  619. For example using ``map``:
  620. .. code-block:: pycon
  621. >>> from proj.tasks import add
  622. >>> ~xsum.map([range(10), range(100)])
  623. [45, 4950]
  624. is the same as having a task doing:
  625. .. code-block:: python
  626. @app.task
  627. def temp():
  628. return [xsum(range(10)), xsum(range(100))]
  629. and using ``starmap``:
  630. .. code-block:: pycon
  631. >>> ~add.starmap(zip(range(10), range(10)))
  632. [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  633. is the same as having a task doing:
  634. .. code-block:: python
  635. @app.task
  636. def temp():
  637. return [add(i, i) for i in range(10)]
  638. Both ``map`` and ``starmap`` are signature objects, so they can be used as
  639. other signatures and combined in groups etc., for example
  640. to call the starmap after 10 seconds:
  641. .. code-block:: pycon
  642. >>> add.starmap(zip(range(10), range(10))).apply_async(countdown=10)
  643. .. _canvas-chunks:
  644. Chunks
  645. ------
  646. Chunking lets you divide an iterable of work into pieces, so that if
  647. you have one million objects, you can create 10 tasks with hundred
  648. thousand objects each.
  649. Some may worry that chunking your tasks results in a degradation
  650. of parallelism, but this is rarely true for a busy cluster
  651. and in practice since you're avoiding the overhead of messaging
  652. it may considerably increase performance.
  653. To create a chunks signature you can use :meth:`@Task.chunks`:
  654. .. code-block:: pycon
  655. >>> add.chunks(zip(range(100), range(100)), 10)
  656. As with :class:`~celery.group` the act of sending the messages for
  657. the chunks will happen in the current process when called:
  658. .. code-block:: pycon
  659. >>> from proj.tasks import add
  660. >>> res = add.chunks(zip(range(100), range(100)), 10)()
  661. >>> res.get()
  662. [[0, 2, 4, 6, 8, 10, 12, 14, 16, 18],
  663. [20, 22, 24, 26, 28, 30, 32, 34, 36, 38],
  664. [40, 42, 44, 46, 48, 50, 52, 54, 56, 58],
  665. [60, 62, 64, 66, 68, 70, 72, 74, 76, 78],
  666. [80, 82, 84, 86, 88, 90, 92, 94, 96, 98],
  667. [100, 102, 104, 106, 108, 110, 112, 114, 116, 118],
  668. [120, 122, 124, 126, 128, 130, 132, 134, 136, 138],
  669. [140, 142, 144, 146, 148, 150, 152, 154, 156, 158],
  670. [160, 162, 164, 166, 168, 170, 172, 174, 176, 178],
  671. [180, 182, 184, 186, 188, 190, 192, 194, 196, 198]]
  672. while calling ``.apply_async`` will create a dedicated
  673. task so that the individual tasks are applied in a worker
  674. instead:
  675. .. code-block:: pycon
  676. >>> add.chunks(zip(range(100), range(100)), 10).apply_async()
  677. You can also convert chunks to a group:
  678. .. code-block:: pycon
  679. >>> group = add.chunks(zip(range(100), range(100)), 10).group()
  680. and with the group skew the countdown of each task by increments
  681. of one:
  682. .. code-block:: pycon
  683. >>> group.skew(start=1, stop=10)()
  684. This means that the first task will have a countdown of one second, the second
  685. task a countdown of two seconds, and so on.