executing.rst 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. =================
  2. Executing Tasks
  3. =================
  4. .. contents::
  5. :local:
  6. Basics
  7. ======
  8. Executing tasks is done with :meth:`~celery.task.Base.Task.apply_async`,
  9. and its shortcut: :meth:`~celery.task.Base.Task.delay`.
  10. ``delay`` is simple and convenient, as it looks like calling a regular
  11. function:
  12. .. code-block:: python
  13. Task.delay(arg1, arg2, kwarg1="x", kwarg2="y")
  14. The same thing using ``apply_async`` is written like this:
  15. .. code-block:: python
  16. Task.apply_async(args=[arg1, arg2], kwargs={"kwarg1": "x", "kwarg2": "y"})
  17. You can also execute a task by name using :func:`~celery.execute.send_task`,
  18. if you don't have access to the task's class::
  19. >>> from celery.execute import send_task
  20. >>> result = send_task("tasks.add", [2, 2])
  21. >>> result.get()
  22. 4
  23. While ``delay`` is convenient, it doesn't give you as much control as using ``apply_async``.
  24. With ``apply_async`` you can override the execution options available as attributes on
  25. the ``Task`` class: ``routing_key``, ``exchange``, ``immediate``, ``mandatory``,
  26. ``priority``, and ``serializer``. In addition you can set a countdown/eta, or provide
  27. a custom broker connection.
  28. Let's go over these in more detail. The following examples use this simple
  29. task, which adds together two numbers:
  30. .. code-block:: python
  31. @task
  32. def add(x, y):
  33. return x + y
  34. ETA and countdown
  35. =================
  36. The ETA (estimated time of arrival) lets you set a specific date and time that
  37. is the earliest time at which your task will execute. ``countdown`` is
  38. a shortcut to set this by seconds in the future.
  39. .. code-block:: python
  40. >>> result = add.apply_async(args=[10, 10], countdown=3)
  41. >>> result.get() # this takes at least 3 seconds to return
  42. 20
  43. Note that your task is guaranteed to be executed at some time *after* the
  44. specified date and time has passed, but not necessarily at that exact time.
  45. While ``countdown`` is an integer, ``eta`` must be a :class:`~datetime.datetime` object,
  46. specifying an exact date and time in the future. This is good if you already
  47. have a :class:`~datetime.datetime` object and need to modify it with a
  48. :class:`~datetime.timedelta`, or when using time in seconds is not very readable.
  49. .. code-block:: python
  50. from datetime import datetime, timedelta
  51. def add_tomorrow(username):
  52. """Add this tomorrow."""
  53. tomorrow = datetime.now() + timedelta(days=1)
  54. add.apply_async(args=[10, 10], eta=tomorrow)
  55. Serializers
  56. ===========
  57. Data passed between celery and workers has to be serialized to be
  58. transferred. The default serializer is :mod:`pickle`, but you can
  59. change this for each
  60. task. There is built-in support for using :mod:`pickle`, ``JSON`` and ``YAML``,
  61. and you can add your own custom serializers by registering them into the
  62. carrot serializer registry.
  63. The default serializer (pickle) supports Python objects, like ``datetime`` and
  64. any custom datatypes you define yourself. But since pickle has poor support
  65. outside of the Python language, you need to choose another serializer if you
  66. need to communicate with other languages. In that case, ``JSON`` is a very
  67. popular choice.
  68. The serialization method is sent with the message, so the worker knows how to
  69. deserialize any task. Of course, if you use a custom serializer, this must
  70. also be registered in the worker.
  71. When sending a task the serialization method is taken from the following
  72. places in order: The ``serializer`` argument to ``apply_async``, the
  73. Task's ``serializer`` attribute, and finally the global default ``CELERY_SERIALIZER``
  74. configuration directive.
  75. .. code-block:: python
  76. >>> add.apply_async(args=[10, 10], serializer="json")
  77. Connections and connection timeouts.
  78. ====================================
  79. Currently there is no support for broker connection pools in celery,
  80. so this is something you need to be aware of when sending more than
  81. one task at a time, as ``apply_async``/``delay`` establishes and
  82. closes a connection every time.
  83. If you need to send more than one task at the same time, it's a good idea to
  84. establish the connection yourself and pass it to ``apply_async``:
  85. .. code-block:: python
  86. numbers = [(2, 2), (4, 4), (8, 8), (16, 16)]
  87. results = []
  88. publisher = add.get_publisher()
  89. try:
  90. for args in numbers:
  91. res = add.apply_async(args=args, publisher=publisher)
  92. results.append(res)
  93. finally:
  94. publisher.close()
  95. publisher.connection.close()
  96. print([res.get() for res in results])
  97. The connection timeout is the number of seconds to wait before we give up
  98. establishing the connection. You can set this with the ``connect_timeout``
  99. argument to ``apply_async``:
  100. .. code-block:: python
  101. add.apply_async([10, 10], connect_timeout=3)
  102. Or if you handle the connection manually:
  103. .. code-block:: python
  104. publisher = add.get_publisher(connect_timeout=3)
  105. Routing options
  106. ===============
  107. Celery uses the AMQP routing mechanisms to route tasks to different workers.
  108. You can route tasks using the following entities: exchange, queue and routing key.
  109. Messages (tasks) are sent to exchanges, a queue binds to an exchange with a
  110. routing key. Let's look at an example:
  111. Our application has a lot of tasks, some process video, others process images,
  112. and some gather collective intelligence about users. Some of these have
  113. higher priority than others so we want to make sure the high priority tasks
  114. get sent to powerful machines, while low priority tasks are sent to dedicated
  115. machines that can handle these at their own pace.
  116. For the sake of example we have only one exchange called ``tasks``.
  117. There are different types of exchanges that matches the routing key in
  118. different ways, the exchange types are:
  119. * direct
  120. Matches the routing key exactly.
  121. * topic
  122. In the topic exchange the routing key is made up of words separated by dots (``.``).
  123. Words can be matched by the wild cards ``*`` and ``#``, where ``*`` matches one
  124. exact word, and ``#`` matches one or many.
  125. For example, ``*.stock.#`` matches the routing keys ``usd.stock`` and
  126. ``euro.stock.db`` but not ``stock.nasdaq``.
  127. (there are also other exchange types, but these are not used by celery)
  128. So, we create three queues, ``video``, ``image`` and ``lowpri`` that bind to
  129. our ``tasks`` exchange. For the queues we use the following binding keys::
  130. video: video.#
  131. image: image.#
  132. lowpri: misc.#
  133. Now we can send our tasks to different worker machines, by making the workers
  134. listen to different queues:
  135. .. code-block:: python
  136. >>> add.apply_async(args=[filename],
  137. ... routing_key="video.compress")
  138. >>> add.apply_async(args=[filename, 360],
  139. ... routing_key="image.rotate")
  140. >>> add.apply_async(args=[filename, selection],
  141. ... routing_key="image.crop")
  142. >>> add.apply_async(routing_key="misc.recommend")
  143. Later, if the crop task is consuming a lot of resources,
  144. we can bind some new workers to handle just the ``"image.crop"`` task,
  145. by creating a new queue that binds to ``"image.crop``".
  146. AMQP options
  147. ============
  148. **NOTE** The ``mandatory`` and ``immediate`` flags are not supported by
  149. ``amqplib`` at this point.
  150. * mandatory
  151. This sets the delivery to be mandatory. An exception will be raised
  152. if there are no running workers able to take on the task.
  153. * immediate
  154. Request immediate delivery. Will raise an exception
  155. if the task cannot be routed to a worker immediately.
  156. * priority
  157. A number between ``0`` and ``9``, where ``0`` is the highest priority.
  158. Note that RabbitMQ does not implement AMQP priorities, and maybe your broker
  159. does not either, consult your broker's documentation for more
  160. information.