2014-01-06 19:49:32 +04:00
|
|
|
#!/bin/bash
|
2014-11-03 20:20:00 +03:00
|
|
|
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2014-05-31 03:09:11 +04:00
|
|
|
curr_dir=$( dirname "${BASH_SOURCE[0]}" )
|
|
|
|
cd $( dirname $curr_dir)
|
2014-01-08 01:28:48 +04:00
|
|
|
|
2014-05-31 03:09:11 +04:00
|
|
|
source /etc/profile.d/treeherder.sh
|
2014-05-20 19:57:13 +04:00
|
|
|
|
2014-05-31 03:09:11 +04:00
|
|
|
if [[ ${NEW_RELIC_LICENSE_KEY+isset} = isset ]]; then
|
2014-05-20 19:57:13 +04:00
|
|
|
NEWRELIC_ADMIN="newrelic-admin run-program"
|
2014-05-31 03:09:11 +04:00
|
|
|
fi
|
2014-05-20 19:57:13 +04:00
|
|
|
|
2014-10-10 20:46:05 +04:00
|
|
|
if [ -f ../venv/bin/celery ]; then
|
2014-05-30 21:29:34 +04:00
|
|
|
source ../venv/bin/activate
|
2014-10-10 20:46:05 +04:00
|
|
|
CELERY=../venv/bin/celery
|
2014-05-31 03:09:11 +04:00
|
|
|
else
|
2014-10-10 20:46:05 +04:00
|
|
|
CELERY=celery
|
2014-05-31 03:09:11 +04:00
|
|
|
fi
|
2014-05-30 21:29:34 +04:00
|
|
|
|
2014-05-31 03:09:11 +04:00
|
|
|
LOGFILE=/var/log/celery/celery_worker.log
|
|
|
|
|
2014-05-31 03:24:20 +04:00
|
|
|
if [ ! -f $LOGFILE ]; then
|
2014-05-31 03:09:11 +04:00
|
|
|
touch $LOGFILE
|
|
|
|
fi
|
|
|
|
|
2014-10-10 20:46:05 +04:00
|
|
|
exec $NEWRELIC_ADMIN $CELERY -A treeherder worker -c 3 \
|
2014-10-21 21:21:02 +04:00
|
|
|
-Q default -E --maxtasksperchild=500 \
|
2014-10-10 20:46:05 +04:00
|
|
|
--logfile=$LOGFILE -l INFO -n default.%h
|