forked from gem/oq-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
RiskLib 0.1 Celery
bwyss edited this page Mar 16, 2011
·
4 revisions
Celery is an open source asynchronous task queue/job queue based on distributed message passing. It is focused on real-time operation, but supports scheduling as well.
The execution units, called tasks, are executed concurrently on one or more worker nodes. Tasks can execute asynchronously (in the background) or synchronously (wait until ready).
The broker delivers tasks to the worker servers. A worker server is a networked machine running celeryd. This can be one or more machines depending on the workload.
The result of the task can be stored for later retrieval (called its “tombstone”).
You can find more information at: http://ask.github.com/celery/index.html
Back to Blueprints