first-steps-with-celery.rst 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. ========================
  2. First steps with Celery
  3. ========================
  4. Creating a simple task
  5. ======================
  6. In this example we are creating a simple task that adds two
  7. numbers. Tasks are defined in a normal python module. The module can
  8. be named whatever you like, but the convention is to call it
  9. ``tasks.py``.
  10. Our addition task looks like this:
  11. ``tasks.py``:
  12. .. code-block:: python
  13. from celery.decorators import task
  14. @task
  15. def add(x, y):
  16. return x + y
  17. All celery tasks are classes that inherit from the ``Task``
  18. class. In this case we're using a decorator that wraps the add
  19. function in an appropriate class for us automatically. The full
  20. documentation on how to create tasks and task classes are in
  21. :doc:`Executing Tasks<../userguide/tasks>`.
  22. Configuration
  23. =============
  24. Celery is configured by using a configuration module. By convention,
  25. this module is called ``celeryconfig.py``. This module must be in the
  26. Python path so it can be imported.
  27. You can set a custom name for the configuration module with the
  28. ``CELERY_CONFIG_MODULE`` variable. In these examples we use the
  29. default name.
  30. Let's create our ``celeryconfig.py``.
  31. 1. Configure how we communicate with the broker::
  32. BROKER_HOST = "localhost"
  33. BROKER_PORT = 5672
  34. BROKER_USER = "myuser"
  35. BROKER_PASSWORD = "mypassword"
  36. BROKER_VHOST = "myvhost"
  37. 2. In this example we don't want to store the results of the tasks, so
  38. we'll use the simplest backend available; the AMQP backend::
  39. CELERY_RESULT_BACKEND = "amqp"
  40. 3. Finally, we list the modules to import, that is, all the modules
  41. that contain tasks. This is so celery knows about what tasks it can
  42. be asked to perform. We only have a single task module,
  43. ``tasks.py``, which we added earlier::
  44. CELERY_IMPORTS = ("tasks", )
  45. That's it.
  46. There are more options available, like how many processes you want to
  47. process work in parallel (the ``CELERY_CONCURRENCY`` setting), and we
  48. could use a persistent result store backend, but for now, this should
  49. do. For all of the options available, see the
  50. :doc:`configuration directive reference<../configuration>`.
  51. Running the celery worker server
  52. ================================
  53. To test we will run the worker server in the foreground, so we can
  54. see what's going on in the terminal::
  55. $ PYTHONPATH="." celeryd --loglevel=INFO
  56. However, in production you probably want to run the worker in the
  57. background as a daemon. To do this you need to use to tools provided
  58. by your platform, or something like `supervisord`_.
  59. For a complete listing of the command line options available, use the
  60. help command::
  61. $ PYTHONPATH="." celeryd --help
  62. For info on how to run celery as standalone daemon, see
  63. :doc:`daemon mode reference<../cookbook/daemonizing>`
  64. .. _`supervisord`: http://supervisord.org
  65. Executing the task
  66. ==================
  67. Whenever we want to execute our task, we can use the ``delay`` method
  68. of the task class.
  69. This is a handy shortcut to the ``apply_async`` method which gives
  70. greater control of the task execution.
  71. See :doc:`Executing Tasks<../userguide/executing>` for more information.
  72. >>> from tasks import add
  73. >>> add.delay(4, 4)
  74. <AsyncResult: 889143a6-39a2-4e52-837b-d80d33efb22d>
  75. At this point, the task has been sent to the message broker. The message
  76. broker will hold on to the task until a celery worker server has successfully
  77. picked it up.
  78. *Note:* If everything is just hanging when you execute ``delay``, please check
  79. that RabbitMQ is running, and that the user/password has access to the virtual
  80. host you configured earlier.
  81. Right now we have to check the celery worker log files to know what happened
  82. with the task. This is because we didn't keep the ``AsyncResult`` object
  83. returned by ``delay``.
  84. The ``AsyncResult`` lets us find the state of the task, wait for the task to
  85. finish and get its return value (or exception if the task failed).
  86. So, let's execute the task again, but this time we'll keep track of the task:
  87. >>> result = add.delay(4, 4)
  88. >>> result.ready() # returns True if the task has finished processing.
  89. False
  90. >>> result.result # task is not ready, so no return value yet.
  91. None
  92. >>> result.get() # Waits until the task is done and returns the retval.
  93. 8
  94. >>> result.result # direct access to result, doesn't re-raise errors.
  95. 8
  96. >>> result.successful() # returns True if the task didn't end in failure.
  97. True
  98. If the task raises an exception, the return value of ``result.successful()``
  99. will be ``False``, and ``result.result`` will contain the exception instance
  100. raised by the task.
  101. That's all for now! After this you should probably read the :doc:`User
  102. Guide<../userguide/index>`.