1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
.. _glossary:
Glossary
========
.. glossary::
:sorted:
acknowledged
Workers acknowledge messages to signify that a message has been
handled. Failing to acknowledge a message
will cause the message to be redelivered. Exactly when a
transaction is considered a failure varies by transport. In AMQP the
transaction fails when the connection/channel is closed (or lost),
but in Redis/SQS the transaction times out after a configurable amount
of time (the ``visibility_timeout``).
ack
Short for :term:`acknowledged`.
early acknowledgment
Task is :term:`acknowledged` just-in-time before being executed,
meaning the task won't be redelivered to another worker if the
machine loses power, or the worker instance is abruptly killed,
mid-execution.
Configured using :setting:`task_acks_late`.
late acknowledgment
Task is :term:`acknowledged` after execution (both if successful, or
if the task is raising an error), which means the task will be
redelivered to another worker in the event of the machine losing
power, or the worker instance being killed mid-execution.
Configured using :setting:`task_acks_late`.
early ack
Short for :term:`early acknowledgment`
late ack
Short for :term:`late acknowledgment`
ETA
"Estimated Time of Arrival", in Celery and Google Task Queue, etc.,
used as the term for a delayed message that should not be processed
until the specified ETA time. See :ref:`calling-eta`.
request
Task messages are converted to *requests* within the worker.
The request information is also available as the task's
:term:`context` (the ``task.request`` attribute).
calling
Sends a task message so that the task function is
:term:`executed <executing>` by a worker.
kombu
Python messaging library used by Celery to send and receive messages.
billiard
Fork of the Python multiprocessing library containing improvements
required by Celery.
executing
Workers *execute* task :term:`requests <request>`.
apply
Originally a synonym to :term:`call <calling>` but used to signify
that a function is executed by the current process.
context
The context of a task contains information like the id of the task,
it's arguments and what queue it was delivered to.
It can be accessed as the tasks ``request`` attribute.
See :ref:`task-request-info`
idempotent
Idempotence is a mathematical property that describes a function that
can be called multiple times without changing the result.
Practically it means that a function can be repeated many times without
unintended effects, but not necessarily side-effect free in the pure
sense (compare to :term:`nullipotent`).
Further reading: https://en.wikipedia.org/wiki/Idempotent
nullipotent
describes a function that'll have the same effect, and give the same
result, even if called zero or multiple times (side-effect free).
A stronger version of :term:`idempotent`.
reentrant
describes a function that can be interrupted in the middle of
execution (e.g., by hardware interrupt or signal), and then safely
called again later. Reentrancy isn't the same as
:term:`idempotence <idempotent>` as the return value doesn't have to
be the same given the same inputs, and a reentrant function may have
side effects as long as it can be interrupted; An idempotent function
is always reentrant, but the reverse may not be true.
cipater
Celery release 3.1 named after song by Autechre
(http://www.youtube.com/watch?v=OHsaqUr_33Y)
prefetch multiplier
The :term:`prefetch count` is configured by using the
:setting:`worker_prefetch_multiplier` setting, which is multiplied
by the number of pool slots (threads/processes/greenthreads).
`prefetch count`
Maximum number of unacknowledged messages a consumer can hold and if
exceeded the transport shouldn't deliver any more messages to that
consumer. See :ref:`optimizing-prefetch-limit`.
pidbox
A process mailbox, used to implement remote control commands.
|