Fixes: 1) Correct typo in Celery argument --worker-prefetch-multiplier to --prefetch-multiplier.

This commit is contained in:
Egor Pavlovich Gorbunov 2025-07-02 00:44:27 +03:00
parent 597e7b98c4
commit 200b93b19a

View file

@ -5,4 +5,4 @@ set -e
poetry run python manage.py await_services
# run worker and metrics exporter
poetry run celery -A evibes worker --pool=prefork --concurrency=8 --loglevel=info -E --queues=default --worker-prefetch-multiplier=1 --max-tasks-per-child=100 --max-memory-per-child=512000 --soft-time-limit=3600 --time-limit=7200 --pool-startup-timeout=30 & /usr/local/bin/celery-prometheus-exporter
poetry run celery -A evibes worker --pool=prefork --concurrency=8 --loglevel=info -E --queues=default --prefetch-multiplier=1 --max-tasks-per-child=100 --max-memory-per-child=512000 --soft-time-limit=3600 --time-limit=7200 --pool-startup-timeout=30 & /usr/local/bin/celery-prometheus-exporter