-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Split datatracker/celery start scripts (#6974)
- Loading branch information
1 parent
565486e
commit 661941d
Showing
3 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
# | ||
# Run a celery worker | ||
# | ||
echo "Running Datatracker checks..." | ||
./ietf/manage.py check | ||
|
||
cleanup () { | ||
# Cleanly terminate the celery app by sending it a TERM, then waiting for it to exit. | ||
if [[ -n "${celery_pid}" ]]; then | ||
echo "Gracefully terminating celery worker. This may take a few minutes if tasks are in progress..." | ||
kill -TERM "${celery_pid}" | ||
wait "${celery_pid}" | ||
fi | ||
} | ||
|
||
trap 'trap "" TERM; cleanup' TERM | ||
|
||
# start celery in the background so we can trap the TERM signal | ||
celery "$@" & | ||
celery_pid=$! | ||
wait "${celery_pid}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
echo "Running Datatracker checks..." | ||
./ietf/manage.py check | ||
|
||
echo "Running Datatracker migrations..." | ||
./ietf/manage.py migrate --settings=settings_local | ||
|
||
echo "Starting Datatracker..." | ||
./ietf/manage.py runserver 0.0.0.0:8000 --settings=settings_local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
#!/bin/bash | ||
|
||
echo "Running Datatracker checks..." | ||
./ietf/manage.py check | ||
|
||
echo "Running Datatracker migrations..." | ||
./ietf/manage.py migrate --settings=settings_local | ||
|
||
echo "Starting Datatracker..." | ||
./ietf/manage.py runserver 0.0.0.0:8000 --settings=settings_local | ||
# | ||
# Environment config: | ||
# | ||
# CONTAINER_ROLE - datatracker, celery, or beat (defaults to datatracker) | ||
# | ||
case "${CONTAINER_ROLE:-datatracker}" in | ||
datatracker) | ||
exec ./datatracker-start.sh | ||
;; | ||
celery) | ||
exec ./celery-start.sh --app=ietf worker | ||
;; | ||
beat) | ||
exec ./celery-start.sh --app=ietf beat | ||
;; | ||
*) | ||
echo "Unknown role '${CONTAINER_ROLE}'" | ||
exit 255 | ||
esac |