|
@@ -2,7 +2,7 @@
|
|
celery - Distributed Task Queue
|
|
celery - Distributed Task Queue
|
|
=================================
|
|
=================================
|
|
|
|
|
|
-.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
|
|
|
|
|
|
+.. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
|
|
|
|
|
|
:Version: 2.6.0rc4
|
|
:Version: 2.6.0rc4
|
|
:Web: http://celeryproject.org/
|
|
:Web: http://celeryproject.org/
|
|
@@ -95,7 +95,7 @@ Overview
|
|
|
|
|
|
This is a high level overview of the architecture.
|
|
This is a high level overview of the architecture.
|
|
|
|
|
|
-.. image:: http://cloud.github.com/downloads/ask/celery/Celery-Overview-v4.jpg
|
|
|
|
|
|
+.. image:: http://cloud.github.com/downloads/celery/celery/Celery-Overview-v4.jpg
|
|
|
|
|
|
The broker delivers tasks to the worker nodes.
|
|
The broker delivers tasks to the worker nodes.
|
|
A worker node is a networked machine running `celeryd`. This can be one or
|
|
A worker node is a networked machine running `celeryd`. This can be one or
|
|
@@ -115,7 +115,7 @@ adding two numbers:
|
|
|
|
|
|
from celery import task
|
|
from celery import task
|
|
|
|
|
|
- @task
|
|
|
|
|
|
+ @task()
|
|
def add(x, y):
|
|
def add(x, y):
|
|
return x + y
|
|
return x + y
|
|
|
|
|
|
@@ -251,6 +251,8 @@ To install using `easy_install`,::
|
|
|
|
|
|
$ easy_install -U Celery
|
|
$ easy_install -U Celery
|
|
|
|
|
|
|
|
+.. _bundles:
|
|
|
|
+
|
|
Bundles
|
|
Bundles
|
|
-------
|
|
-------
|
|
|
|
|