Skip to content

Instantly share code, notes, and snippets.

@kuzminT
Last active April 9, 2022 18:52
Show Gist options
  • Save kuzminT/6e888e8287609a11c711f198240d0d03 to your computer and use it in GitHub Desktop.
Save kuzminT/6e888e8287609a11c711f198240d0d03 to your computer and use it in GitHub Desktop.
Celery - полезные ссылки и команды
celery - инструкция и пример:
https://www.codingforentrepreneurs.com/blog/celery-redis-django/
Статья:
https://www.caktusgroup.com/blog/2014/06/23/scheduling-tasks-celery/
First Steps with Celery:
http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html#tut-celery
Официальная документация:
http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
Периодически повторяющиеся задачи:
http://docs.celeryproject.org/en/latest/userguide/periodic-tasks.html
https://khashtamov.com/ru/celery-best-practices/ - полезные советы по использованию и настройке, статья
celery -A technoblog beat info - запуск периодических задач
celery -A technoblog worker -l info - запуск celery
celery -A myshop flower - мониторинг задач
Open http://localhost:5555/dashboard in your browser. You will be able to see
the active Celery workers and asynchronous tasks' statistics:
- Документация по flower
http://flower.readthedocs.io/en/latest/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment