2022-10-12 14:22:22 +00:00
#!/usr/bin/env bash
function error_handler() {
2024-02-07 21:57:11 +00:00
echo >&2 "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
2022-10-12 14:22:22 +00:00
exit "$2"
}
trap 'error_handler ${LINENO} $?' ERR
set -o errtrace -o errexit -o nounset -o pipefail
2024-02-07 21:57:11 +00:00
function log_info() {
echo "BOOT SERVER IN DOCKER ($(date +"%Y-%m-%d %H:%M:%S")): $1"
}
2023-08-31 20:09:26 +00:00
# example command:
# SPIFFWORKFLOW_BACKEND_PERMISSIONS_FILE_NAME=example.yml SPIFFWORKFLOW_BACKEND_DATABASE_TYPE=sqlite SPIFFWORKFLOW_BACKEND_ENV=local_docker SPIFFWORKFLOW_BACKEND_RUN_BACKGROUND_SCHEDULER_IN_CREATE_APP=true FLASK_DEBUG=0 FLASK_SESSION_SECRET_KEY=HEY SPIFFWORKFLOW_BACKEND_BPMN_SPEC_ABSOLUTE_DIR="${HOME}/projects/github/sartography/sample-process-models/" ./bin/boot_server_in_docker
2022-10-12 14:22:22 +00:00
# run migrations
export FLASK_APP=/app/src/spiffworkflow_backend
2024-04-09 17:44:47 +00:00
if [[ -z "${FLASK_DEBUG:-}" ]]; then
export FLASK_DEBUG=0
fi
2023-02-15 22:21:37 +00:00
if [[ "${SPIFFWORKFLOW_BACKEND_WAIT_FOR_DB_TO_BE_READY:-}" == "true" ]]; then
2022-10-17 02:32:16 +00:00
echo 'Waiting for db to be ready...'
poetry run python ./bin/wait_for_db_to_be_ready.py
fi
2023-02-15 22:21:37 +00:00
if [[ "${SPIFFWORKFLOW_BACKEND_DOWNGRADE_DB:-}" == "true" ]]; then
2022-10-12 14:22:22 +00:00
echo 'Downgrading database...'
poetry run flask db downgrade
fi
if [[ "${SPIFFWORKFLOW_BACKEND_UPGRADE_DB:-}" == "true" ]]; then
echo 'Upgrading database...'
poetry run flask db upgrade
fi
2023-02-07 20:38:29 +00:00
if [[ -z "${GUNICORN_LOG_LEVEL:-}" ]]; then
GUNICORN_LOG_LEVEL=debug
fi
if [[ -z "${GUNICORN_TIMEOUT_SECONDS:-}" ]]; then
GUNICORN_TIMEOUT_SECONDS=90
fi
2022-10-12 14:22:22 +00:00
port="${SPIFFWORKFLOW_BACKEND_PORT:-}"
if [[ -z "$port" ]]; then
port=7000
fi
additional_args=""
2023-05-16 23:24:55 +00:00
app_root="${SPIFFWORKFLOW_BACKEND_APPLICATION_ROOT:-}"
if [[ -n "$app_root" ]] && [[ "${app_root}" != "/" ]]; then
2024-04-05 19:14:09 +00:00
echo >&2 "ERROR: SPIFFWORKFLOW_BACKEND_APPLICATION_ROOT has been set. This variable has been renamed to SPIFFWORKFLOW_BACKEND_WSGI_PATH_PREFIX. Please use that instead."
exit 1
fi
path_prefix="${SPIFFWORKFLOW_BACKEND_WSGI_PATH_PREFIX:-}"
if [[ -n "$path_prefix" ]] && [[ "${path_prefix}" != "/" ]]; then
if ! grep -E '^/' <<<"${path_prefix}"; then
echo >&2 "ERROR: SPIFFWORKFLOW_BACKEND_WSGI_PATH_PREFIX must start with a '/'. '$SPIFFWORKFLOW_BACKEND_WSGI_PATH_PREFIX' was used instead."
exit 1
fi
additional_args="${additional_args} -e SCRIPT_NAME=${path_prefix}"
2022-10-12 14:22:22 +00:00
fi
# HACK: if loading fixtures for acceptance tests when we do not need multiple workers
# it causes issues with attempting to add duplicate data to the db
2023-05-15 02:19:53 +00:00
worker_count=4
2022-10-12 14:22:22 +00:00
if [[ "${SPIFFWORKFLOW_BACKEND_LOAD_FIXTURE_DATA:-}" == "true" ]]; then
2023-05-15 02:19:53 +00:00
worker_count=1
2022-10-12 14:22:22 +00:00
fi
2022-10-12 19:28:52 +00:00
if [[ "${SPIFFWORKFLOW_BACKEND_RUN_DATA_SETUP:-}" != "false" ]]; then
SPIFFWORKFLOW_BACKEND_FAIL_ON_INVALID_PROCESS_MODELS=false poetry run python bin/save_all_bpmn.py
fi
2023-02-21 19:02:16 +00:00
if [[ -n "${SPIFFWORKFLOW_BACKEND_GIT_SSH_PRIVATE_KEY:-}" ]]; then
2023-02-21 22:08:09 +00:00
if [[ -z "${SPIFFWORKFLOW_BACKEND_GIT_SSH_PRIVATE_KEY_PATH:-}" ]]; then
2023-02-21 19:02:16 +00:00
export SPIFFWORKFLOW_BACKEND_GIT_SSH_PRIVATE_KEY_PATH=$(mktemp /tmp/ssh_private_key.XXXXXX)
fi
chmod 600 "${SPIFFWORKFLOW_BACKEND_GIT_SSH_PRIVATE_KEY_PATH}"
echo "${SPIFFWORKFLOW_BACKEND_GIT_SSH_PRIVATE_KEY}" >"${SPIFFWORKFLOW_BACKEND_GIT_SSH_PRIVATE_KEY_PATH}"
fi
2023-01-25 20:09:05 +00:00
# Assure that the the Process Models Directory is initialized as a git repo
2024-02-07 21:57:11 +00:00
log_info "Running git init"
2023-02-15 22:07:12 +00:00
git init "${SPIFFWORKFLOW_BACKEND_BPMN_SPEC_ABSOLUTE_DIR}"
git config --global --add safe.directory "${SPIFFWORKFLOW_BACKEND_BPMN_SPEC_ABSOLUTE_DIR}"
2022-10-12 14:22:22 +00:00
2023-05-16 23:24:55 +00:00
if [[ -z "${SPIFFWORKFLOW_BACKEND_THREADS_PER_WORKER:-}" ]]; then
# default to 3 * 2 = 6 threads per worker
# you may want to configure threads_to_use_per_core based on whether your workload is more cpu intensive or more I/O intensive:
# cpu heavy, make it smaller
# I/O heavy, make it larger
threads_to_use_per_core=3
# https://stackoverflow.com/a/55423170/6090676
# if we had access to python (i'm not sure i want to run another python script here),
# we could do something like this (on linux) to get the number of cores available to this process and a better estimate of a
# reasonable num_cores_multiple_for_threads
# if hasattr(os, 'sched_getaffinity')
# number_of_available_cores = os.sched_getaffinity(0)
2023-05-17 18:04:48 +00:00
# BUT the python solution isn't even as portable as this one, which is mostly posix compliant and works on linux/mac/freebsd.
num_cores_multiple_for_threads=$(getconf _NPROCESSORS_ONLN 2>/dev/null || getconf NPROCESSORS_ONLN 2>/dev/null || echo 1)
2023-05-16 23:24:55 +00:00
SPIFFWORKFLOW_BACKEND_THREADS_PER_WORKER=$((threads_to_use_per_core * num_cores_multiple_for_threads))
export SPIFFWORKFLOW_BACKEND_THREADS_PER_WORKER
fi
2023-05-15 02:19:53 +00:00
2023-08-10 12:54:49 +00:00
# DELETE after this runs on all necessary environments
# TODO: make a system somewhat like schema migrations (storing versions in a db table) to handle data migrations
2024-02-07 21:57:11 +00:00
log_info "Running data migrations"
2023-10-10 15:17:09 +00:00
poetry run python ./bin/data_migrations/run_all.py
2023-08-10 12:54:49 +00:00
2023-05-15 02:19:53 +00:00
# --worker-class is not strictly necessary, since setting threads will automatically set the worker class to gthread, but meh
2024-02-07 21:57:11 +00:00
log_info "Starting gunicorn server"
2023-01-25 20:09:05 +00:00
export IS_GUNICORN="true"
2022-10-12 14:22:22 +00:00
# THIS MUST BE THE LAST COMMAND!
2024-02-07 21:57:11 +00:00
exec poetry run gunicorn ${additional_args} \
--bind "0.0.0.0:$port" \
2023-05-15 02:19:53 +00:00
--preload \
--worker-class "gthread" \
2024-02-07 21:57:11 +00:00
--workers="$worker_count" \
2023-05-16 23:24:55 +00:00
--threads "$SPIFFWORKFLOW_BACKEND_THREADS_PER_WORKER" \
2024-02-07 21:57:11 +00:00
--limit-request-line 8192 \
--timeout "$GUNICORN_TIMEOUT_SECONDS" \
--capture-output \
--access-logfile '-' \
2023-02-07 20:38:29 +00:00
--log-level "$GUNICORN_LOG_LEVEL" wsgi:app