Difference between revisions of "Celery"
Jump to navigation
Jump to search
↑ https://flower.readthedocs.io/en/latest/#flower-celery-monitoring-tool
Tags: Mobile web edit, Mobile edit |
|||
(46 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[wikipedia:celery (software)]] is an open source [[asynchronous task queue]] or job queue which is based on distributed message passing. | [[wikipedia:celery (software)]] is an open source [[asynchronous task queue]] or job queue which is based on distributed message passing. | ||
+ | |||
+ | * Installation: <code>[[pip3 install celery]]</code> | ||
+ | * Supported backend and [[Broker]]s: [[RabbitMQ]], [[Redis]], [[Zookeeper]], [[Amazon SQS]], [[SQLAlchemy]] | ||
+ | |||
+ | |||
+ | == Commands == | ||
+ | * <code>[[celery --help]]</code> | ||
+ | * <code>[[celery list]]</code> | ||
+ | * <code>[[celery status]]</code> | ||
+ | * <code>[[celery control]]</code> | ||
+ | * <code>[[celery shell]]</code> | ||
+ | * <code>[[celery worker]]</code> | ||
+ | * <code>[[celery -A]]</code> | ||
+ | |||
+ | == Related terms == | ||
+ | * [[Flower]] - Celery monitoring tool<ref>https://flower.readthedocs.io/en/latest/#flower-celery-monitoring-tool</ref> | ||
+ | * <code>django-celery</code> provides Celery integration for [[Django]] | ||
+ | * <code>[[WorkerLostError: Worker exited prematurely: signal 9 (SIGKILL)]]</code> | ||
+ | * [[Apache Airflow]], [[Apache Airflow providers]]: https://airflow.apache.org/docs/apache-airflow/stable/executor/celery.html | ||
+ | * [[Celery Director]] | ||
+ | * [[Kombu]] | ||
+ | * [[Jobs]] | ||
+ | * <code>[[airflow celery]]</code> | ||
+ | * [[Celery Executor]] | ||
+ | * [[Celery Broker]] | ||
+ | |||
+ | == See also == | ||
+ | * {{Celery}} | ||
+ | * {{Django}} | ||
+ | |||
+ | [[Category:Python]] | ||
+ | [[Category:Celery]] |
Latest revision as of 15:37, 19 January 2023
wikipedia:celery (software) is an open source asynchronous task queue or job queue which is based on distributed message passing.
- Installation:
pip3 install celery
- Supported backend and Brokers: RabbitMQ, Redis, Zookeeper, Amazon SQS, SQLAlchemy
Commands[edit]
Related terms[edit]
- Flower - Celery monitoring tool[1]
django-celery
provides Celery integration for DjangoWorkerLostError: Worker exited prematurely: signal 9 (SIGKILL)
- Apache Airflow, Apache Airflow providers: https://airflow.apache.org/docs/apache-airflow/stable/executor/celery.html
- Celery Director
- Kombu
- Jobs
airflow celery
- Celery Executor
- Celery Broker
See also[edit]
- Celery Broker, Celery Executor,
celery [ list | status | worker | --version | --help ]
- Django, SQL injection
Advertising: