From e3137c48484baa1f24803be798131b14f3f73aa2 Mon Sep 17 00:00:00 2001 From: Stephen Astels Date: Wed, 20 Sep 2023 12:09:05 -0400 Subject: [PATCH] increase concurrency on staging sms celery pods --- scripts/run_celery_send_sms.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_celery_send_sms.sh b/scripts/run_celery_send_sms.sh index 1b8ea7de50..66abd8fac8 100755 --- a/scripts/run_celery_send_sms.sh +++ b/scripts/run_celery_send_sms.sh @@ -4,7 +4,7 @@ set -e -echo "Start celery, concurrency: ${CELERY_CONCURRENCY-4}" +echo "Start celery, concurrency: 6" # TODO: we shouldn't be using the send-sms-tasks queue anymore - once we verify this we can remove it -celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=${CELERY_CONCURRENCY-4} -Q send-sms-tasks,send-sms-high,send-sms-medium,send-sms-low +celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=6 -Q send-sms-tasks,send-sms-high,send-sms-medium,send-sms-low