Next Steps

    This document does not document all of Celery’s features and best practices, so it’s recommended that you also read the User Guide

    Project layout:

    proj/celery.py

    In this module you created our Celery instance (sometimes referred to as the app). To use Celery within your project you simply import this instance.

    • The broker argument specifies the URL of the broker to use.

    • The backend argument specifies the result backend to use,

    • The include argument is a list of modules to import when the worker starts. You need to add our tasks module here so that the worker is able to find our tasks.

    proj/tasks.py

    The celery program can be used to start the worker:

    When the worker starts you should see a banner and some messages:

    1. -------------- celery@halcyon.local v3.1 (Cipater)
    2. ---- **** -----
    3. --- * *** * -- [Configuration]
    4. -- * - **** --- . broker: amqp://guest@localhost:5672//
    5. - ** ---------- . app: __main__:0x1012d8590
    6. - ** ---------- . concurrency: 8 (processes)
    7. - ** ---------- . events: OFF (enable -E to monitor this worker)
    8. - ** ----------
    9. - *** --- * --- [Queues]
    10. -- ******* ---- . celery: exchange:celery(direct) binding:celery
    11. --- ***** -----
    12. [2012-06-08 16:23:51,078: WARNING/MainProcess] celery@halcyon.local has started.

    – The broker is the URL you specifed in the broker argument in our celery module, you can also specify a different broker on the command-line by using the -b option.

    Concurrency is the number of prefork worker process used to process your tasks concurrently, when all of these are busy doing work new tasks will have to wait for one of the tasks to finish before it can be processed.

    The default concurrency number is the number of CPU’s on that machine (including cores), you can specify a custom number using -c option. There is no recommended value, as the optimal number depends on a number of factors, but if your tasks are mostly I/O-bound then you can try to increase it, experimentation has shown that adding more than twice the number of CPU’s is rarely effective, and likely to degrade performance instead.

    Including the default prefork pool, Celery also supports using Eventlet, Gevent, and threads (see ).

    Events is an option that when enabled causes Celery to send monitoring messages (events) for actions occurring in the worker. These can be used by monitor programs like celery events, and Flower - the real-time Celery monitor, which you can read about in the Monitoring and Management guide.

    Queues is the list of queues that the worker will consume tasks from. The worker can be told to consume from several queues at once, and this is used to route messages to specific workers as a means for Quality of Service, separation of concerns, and emulating priorities, all described in the .

    You can get a complete list of command-line arguments by passing in the –help flag:

    1. $ celery worker --help

    These options are described in more detailed in the Workers Guide.

    Stopping the worker

    To stop the worker simply hit Ctrl+C. A list of signals supported by the worker is detailed in the Workers Guide.

    In the background

    In production you will want to run the worker in the background, this is described in detail in the daemonization tutorial.

    The daemonization scripts uses the celery multi command to start one or more workers in the background:

    1. $ celery multi start w1 -A proj -l info
    2. celery multi v3.1.1 (Cipater)
    3. > Starting nodes...
    4. > w1.halcyon.local: OK

    You can restart it too:

    1. $ celery multi restart w1 -A proj -l info
    2. celery multi v3.1.1 (Cipater)
    3. > Stopping nodes...
    4. > w1.halcyon.local: TERM -> 64024
    5. > Waiting for 1 node.....
    6. > w1.halcyon.local: OK
    7. > Restarting node w1.halcyon.local: OK
    8. > Stopping nodes...
    9. > w1.halcyon.local: TERM -> 64052

    or stop it:

    1. $ celery multi stop w1 -A proj -l info

    The stop command is asynchronous so it will not wait for the worker to shutdown. You will probably want to use the stopwait command instead which will ensure all currently executing tasks is completed:

    1. $ celery multi stopwait w1 -A proj -l info

    注解

    celery multi doesn’t store information about workers so you need to use the same command-line arguments when restarting. Only the same pidfile and logfile arguments must be used when stopping.

    By default it will create pid and log files in the current directory, to protect against multiple workers launching on top of each other you are encouraged to put these in a dedicated directory:

    1. $ mkdir -p /var/run/celery
    2. $ mkdir -p /var/log/celery
    3. $ celery multi start w1 -A proj -l info --pidfile=/var/run/celery/%n.pid \
    4. --logfile=/var/log/celery/%n.pid

    With the multi command you can start multiple workers, and there is a powerful command-line syntax to specify arguments for different workers too, e.g:

    1. $ celery multi start 10 -A proj -l info -Q:1-3 images,video -Q:4,5 data \
    2. -Q default -L:4,5 debug

    For more examples see the module in the API reference.

    About the --app argument

    The --app argument specifies the Celery app instance to use, it must be in the form of module.path:attribute

    But it also supports a shortcut form If only a package name is specified, where it’ll try to search for the app instance, in the following order:

    With --app=proj:

    1. an attribute named proj.app, or
    2. an attribute named proj.celery, or
    3. any attribute in the module proj where the value is a Celery application, or

    If none of these are found it’ll try a submodule named proj.celery:

    1. an attribute named proj.celery.app, or
    2. an attribute named proj.celery.celery, or
    3. Any atribute in the module proj.celery where the value is a Celery application.

    This scheme mimics the practices used in the documentation, i.e. proj:app for a single contained module, and proj.celery:app for larger projects.

    Calling Tasks

    You can call a task using the delay() method:

    1. >>> add.delay(2, 2)
    1. >>> add.apply_async((2, 2))

    The latter enables you to specify execution options like the time to run (countdown), the queue it should be sent to and so on:

    1. >>> add.apply_async((2, 2), queue='lopri', countdown=10)

    In the above example the task will be sent to a queue named lopri and the task will execute, at the earliest, 10 seconds after the message was sent.

    Applying the task directly will execute the task in the current process, so that no message is sent:

    1. >>> add(2, 2)
    2. 4

    These three methods - delay(), apply_async(), and applying (__call__), represents the Celery calling API, which are also used for subtasks.

    A more detailed overview of the Calling API can be found in the .

    Every task invocation will be given a unique identifier (an UUID), this is the task id.

    The delay and apply_async methods return an AsyncResult instance, which can be used to keep track of the tasks execution state. But for this you need to enable a so that the state can be stored somewhere.

    Results are disabled by default because of the fact that there is no result backend that suits every application, so to choose one you need to consider the drawbacks of each individual backend. For many tasks keeping the return value isn’t even very useful, so it’s a sensible default to have. Also note that result backends are not used for monitoring tasks and workers, for that Celery uses dedicated event messages (see Monitoring and Management Guide).

    If you have a result backend configured you can retrieve the return value of a task:

    1. >>> res.get(timeout=1)
    2. 4

    You can find the task’s id by looking at the id attribute:

    1. >>> res.id
    2. d6b3aea2-fb9b-4ebc-8da4-848818db9114

    You can also inspect the exception and traceback if the task raised an exception, in fact result.get() will propagate any errors by default:

    1. >>> res = add.delay(2)
    2. >>> res.get(timeout=1)
    3. Traceback (most recent call last):
    4. File "<stdin>", line 1, in <module>
    5. File "/opt/devel/celery/celery/result.py", line 113, in get
    6. interval=interval)
    7. File "/opt/devel/celery/celery/backends/amqp.py", line 138, in wait_for
    8. raise self.exception_to_python(meta['result'])
    9. TypeError: add() takes exactly 2 arguments (1 given)

    If you don’t wish for the errors to propagate then you can disable that by passing the propagate argument:

    In this case it will return the exception instance raised instead, and so to check whether the task succeeded or failed you will have to use the corresponding methods on the result instance:

    1. >>> res.failed()
    2. True
    3. >>> res.successful()
    4. False

    So how does it know if the task has failed or not? It can find out by looking at the tasks state:

    1. >>> res.state
    2. 'FAILURE'

    A task can only be in a single state, but it can progress through several states. The stages of a typical task can be:

    1. PENDING -> STARTED -> SUCCESS

    The started state is a special state that is only recorded if the setting is enabled, or if the @task(track_started=True) option is set for the task.

    The pending state is actually not a recorded state, but rather the default state for any task id that is unknown, which you can see from this example:

    1. >>> from proj.celery import app
    2. >>> res = app.AsyncResult('this-id-does-not-exist')
    3. >>> res.state
    4. 'PENDING'

    If the task is retried the stages can become even more complex, e.g, for a task that is retried two times the stages would be:

    1. PENDING -> STARTED -> RETRY -> STARTED -> RETRY -> STARTED -> SUCCESS

    To read more about task states you should see the States section in the tasks user guide.

    Calling tasks is described in detail in the .

    You just learned how to call a task using the tasks delay method, and this is often all you need, but sometimes you may want to pass the signature of a task invocation to another process or as an argument to another function, for this Celery uses something called subtasks.

    A subtask wraps the arguments and execution options of a single task invocation in a way such that it can be passed to functions or even serialized and sent across the wire.

    You can create a subtask for the add task using the arguments (2, 2), and a countdown of 10 seconds like this:

    1. >>> add.subtask((2, 2), countdown=10)
    2. tasks.add(2, 2)

    There is also a shortcut using star arguments:

    1. >>> add.s(2, 2)
    2. tasks.add(2, 2)

    Subtask instances also supports the calling API, which means that they have the delay and apply_async methods.

    But there is a difference in that the subtask may already have an argument signature specified. The add task takes two arguments, so a subtask specifying two arguments would make a complete signature:

    1. >>> s1 = add.s(2, 2)
    2. >>> res = s1.delay()
    3. >>> res.get()
    4. 4

    But, you can also make incomplete signatures to create what we call partials:

    1. >>> s2 = add.s(2)

    s2 is now a partial subtask that needs another argument to be complete, and this can be resolved when calling the subtask:

    1. # resolves the partial: add(8, 2)
    2. >>> res = s2.delay(8)
    3. >>> res.get()
    4. 10

    Here you added the argument 8, which was prepended to the existing argument 2 forming a complete signature of add(8, 2).

    Keyword arguments can also be added later, these are then merged with any existing keyword arguments, but with new arguments taking precedence:

    1. >>> s3.delay(debug=False) # debug is now False.

    As stated subtasks supports the calling API, which means that:

    • subtask.apply_async(args=(), kwargs={}, **options)

    • subtask.delay(*args, **kwargs)

      Star argument version of apply_async. Any arguments will be prepended to the arguments in the signature, and keyword arguments is merged with any existing keys.

    So this all seems very useful, but what can you actually do with these? To get to that I must introduce the canvas primitives…

    注解

    These examples retrieve results, so to try them out you need to configure a result backend. The example project above already does that (see the backend argument to Celery).

    Let’s look at some examples:

    Groups

    A group calls a list of tasks in parallel, and it returns a special result instance that lets you inspect the results as a group, and retrieve the return values in order.

    1. >>> from celery import group
    2. >>> from proj.tasks import add
    3. >>> group(add.s(i, i) for i in xrange(10))().get()
    4. [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
    • Partial group
    1. >>> g = group(add.s(i) for i in xrange(10))
    2. >>> g(10).get()
    3. [10, 11, 12, 13, 14, 15, 16, 17, 18, 19]

    Chains

    Tasks can be linked together so that after one task returns the other is called:

    1. >>> from celery import chain
    2. >>> from proj.tasks import add, mul
    3. # (4 + 4) * 8
    4. >>> chain(add.s(4, 4) | mul.s(8))().get()
    5. 64

    or a partial chain:

    1. # (? + 4) * 8
    2. >>> g = chain(add.s(4) | mul.s(8))
    3. >>> g(4).get()
    4. 64

    Chains can also be written like this:

    1. >>> (add.s(4, 4) | mul.s(8))().get()
    2. 64

    Chords

    A chord is a group with a callback:

    A group chained to another task will be automatically converted to a chord:

    1. >>> (group(add.s(i, i) for i in xrange(10)) | xsum.s())().get()
    2. 90

    Since these primitives are all of the subtask type they can be combined almost however you want, e.g:

    1. >>> upload_document.s(file) | group(apply_filter.s() for filter in filters)

    Be sure to read more about workflows in the user guide.

    Celery supports all of the routing facilities provided by AMQP, but it also supports simple routing where messages are sent to named queues.

    The CELERY_ROUTES setting enables you to route tasks by name and keep everything centralized in one location:

    1. app.conf.update(
    2. CELERY_ROUTES = {
    3. 'proj.tasks.add': {'queue': 'hipri'},
    4. },
    5. )

    You can also specify the queue at runtime with the queue argument to apply_async:

    1. >>> from proj.tasks import add
    2. >>> add.apply_async((2, 2), queue='hipri')

    You can then make a worker consume from this queue by specifying the -Q option:

    1. $ celery -A proj worker -Q hipri

    You may specify multiple queues by using a comma separated list, for example you can make the worker consume from both the default queue, and the hipri queue, where the default queue is named celery for historical reasons:

    1. $ celery -A proj worker -Q hipri,celery

    The order of the queues doesn’t matter as the worker will give equal weight to the queues.

    To learn more about routing, including taking use of the full power of AMQP routing, see the .

    If you’re using RabbitMQ (AMQP), Redis or MongoDB as the broker then you can control and inspect the worker at runtime.

    For example you can see what tasks the worker is currently working on:

    1. $ celery -A proj inspect active

    This is implemented by using broadcast messaging, so all remote control commands are received by every worker in the cluster.

    You can also specify one or more workers to act on the request using the --destination option, which is a comma separated list of worker host names:

    1. $ celery -A proj inspect active --destination=[email protected]

    If a destination is not provided then every worker will act and reply to the request.

    The celery inspect command contains commands that does not change anything in the worker, it only replies information and statistics about what is going on inside the worker. For a list of inspect commands you can execute:

    1. $ celery -A proj inspect --help

    Then there is the celery control command, which contains commands that actually changes things in the worker at runtime:

    1. $ celery -A proj control --help

    For example you can force workers to enable event messages (used for monitoring tasks and workers):

    1. $ celery -A proj control enable_events

    When events are enabled you can then start the event dumper to see what the workers are doing:

    1. $ celery -A proj events --dump

    or you can start the curses interface:

    1. $ celery -A proj events

    when you’re finished monitoring you can disable events again:

    1. $ celery -A proj control disable_events

    The celery status command also uses remote control commands and shows a list of online workers in the cluster:

    You can read more about the celery command and monitoring in the Monitoring Guide.

    Timezone

    All times and dates, internally and in messages uses the UTC timezone.

    When the worker receives a message, for example with a countdown set it converts that UTC time to local time. If you wish to use a different timezone than the system timezone then you must configure that using the setting:

      The default configuration is not optimized for throughput by default, it tries to walk the middle way between many short tasks and fewer long tasks, a compromise between throughput and fair scheduling.

      If you have strict fair scheduling requirements, or want to optimize for throughput then you should read the Optimizing Guide.

      If you’re using RabbitMQ then you should install the librabbitmq module, which is an AMQP client implemented in C:

      What to do now?

      There’s also an if you are so inclined.