glossary.rst 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. .. _glossary:
  2. Glossary
  3. ========
  4. .. glossary::
  5. :sorted:
  6. request
  7. Task messages are converted to *requests* within the worker.
  8. The request information is also available as the task's
  9. :term:`context` (the ``task.request`` attribute).
  10. calling
  11. Sends a task message so that the task function is
  12. :term:`executed <executing>` by a worker.
  13. kombu
  14. Python messaging library used by Celery to send and receive messages.
  15. billiard
  16. Fork of the Python multiprocessing library containing improvements
  17. required by Celery.
  18. executing
  19. Workers *execute* task :term:`requests <request>`.
  20. apply
  21. Originally a synonym to :term:`call <calling>` but used to signify
  22. that a function is executed by the current process.
  23. context
  24. The context of a task contains information like the id of the task,
  25. it's arguments and what queue it was delivered to.
  26. It can be accessed as the tasks ``request`` attribute.
  27. See :ref:`task-request-info`