Skip to content

Commit

Permalink
Adding cwagent check to nosms script
Browse files Browse the repository at this point in the history
  • Loading branch information
ben851 committed Oct 11, 2023
1 parent 1310f6e commit 3b26ffd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions scripts/run_celery_no_sms_sending.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
#!/bin/sh

# runs celery with only the throttled sms sending queue

init()
{
# Wait for cwagent to become available.
while :
do
if nc -vz $STATSD_HOST 25888; then
echo "CWAgent is Ready."
break;
else
echo "Waiting for CWAgent to become ready."
sleep 1
fi
done
}

# runs celery with all celery queues except send-throttled-sms-tasks, send-sms-tasks, send-sms-high, send-sms-medium, or send-sms-low

set -e

# Check and see if this is running in K8s and if so, wait for cloudwatch agent
if [[ -z "${STATSD_HOST}" ]]; then
init
fi

echo "Start celery, concurrency: ${CELERY_CONCURRENCY-4}"

celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=${CELERY_CONCURRENCY-4} -Q database-tasks,-priority-database-tasks.fifo,-normal-database-tasks,-bulk-database-tasks,job-tasks,notify-internal-tasks,periodic-tasks,priority-tasks,normal-tasks,bulk-tasks,reporting-tasks,research-mode-tasks,retry-tasks,send-email-tasks,service-callbacks,delivery-receipts

0 comments on commit 3b26ffd

Please sign in to comment.