updated start scripts to run in subshells

This commit is contained in:
Alok Saldanha
2025-11-08 17:51:06 -05:00
parent cd9c0a3671
commit 79fef57010
3 changed files with 4 additions and 3 deletions

2
start_flask.sh Normal file → Executable file
View File

@@ -38,4 +38,4 @@ if [ -z "$CELLXGENE_DATA" ] && [ -z "$CELLXGENE_BUCKET" ]; then
exit 1
fi
cellxgene-gateway
exec cellxgene-gateway

2
start_gunicorn.sh Normal file → Executable file
View File

@@ -76,7 +76,7 @@ cd "$SCRIPT_DIR"
# Additional options you can add via environment variables:
# - GUNICORN_MAX_REQUESTS: Restart worker after N requests (prevents memory leaks)
# - GUNICORN_MAX_REQUESTS_JITTER: Add randomness to max-requests
gunicorn cellxgene_gateway.gateway:app \
exec gunicorn cellxgene_gateway.gateway:app \
--workers "$WORKERS" \
--worker-class "$WORKER_CLASS" \
--bind "$BIND" \

3
start_uwsgi.sh Normal file → Executable file
View File

@@ -53,6 +53,7 @@ export GATEWAY_ENABLE_BACKED_MODE=${GATEWAY_ENABLE_BACKED_MODE:-true}
# Check if uwsgi is installed
if ! command -v uwsgi &> /dev/null; then
echo "Error: uwsgi not found. Install with: pip install uwsgi"
exit 1
else
# Display configuration
echo "Starting Cellxgene Gateway with uWSGI..."
@@ -70,7 +71,7 @@ else
# Start uWSGI with optimized settings
# Additional options you can add via environment variables:
# - UWSGI_MAX_REQUESTS: Restart worker after N requests (prevents memory leaks)
uwsgi \
exec uwsgi \
--http "$HOST:$PORT" \
--module cellxgene_gateway.gateway:app \
--workers "$WORKERS" \