https://github.com/fanqingsong/distributed_computing_on_celery
give a runnable demostration to help understanding distributed computing runner concept.
https://github.com/fanqingsong/distributed_computing_on_celery
celery
Last synced: 3 months ago
JSON representation
give a runnable demostration to help understanding distributed computing runner concept.
- Host: GitHub
- URL: https://github.com/fanqingsong/distributed_computing_on_celery
- Owner: fanqingsong
- Created: 2019-04-15T16:01:57.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-15T16:23:53.000Z (about 6 years ago)
- Last Synced: 2025-01-14T13:53:43.327Z (5 months ago)
- Topics: celery
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# celery_running
give a runnable demostration to help understanding distributing tasks runner concept.
# prerequisite
install rabbitMQ, reference : https://www.cnblogs.com/lightsong/p/10714091.html
and assure RabbitMQ is running# install & run
#install dependency
pipenv install#run tasks proccess
pipenv run celery -A tasks worker --loglevel=info -P eventlet# run producer
pipenv run python taskscaller.py