I have a production server running Django
application
Django server is run using gunicorn
and nginx
pipenv run gunicorn --workers=1 --threads=50 --bind 0.0.0.0:8888 boiler.wsgi:application
celery worker is run using
pipenv run celery -A boiler worker
celery beat is run using
pipenv run celery -A boiler beat
Now i have updated my model and few views on my production server (i.e pulled some changes using github)
Now inorder to reflect the changes should i restart all celery beat
,celery worker
and Django server gunicorn
or only celery worker
and Django server gunicorn
is sufficient
or only Django server gunicorn
is sufficient
question from:
https://stackoverflow.com/questions/65895125/django-do-i-have-to-restart-celery-beat-celery-worker-and-django-gunicorn-when 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…