Skip to content

Commit 4d9f8f9

Browse files
committed
Upgrade to Standard plan (2GB RAM) to fix OOM error
- Change default plan from starter to standard in deploy script - Update render.yaml plan configuration - Starter plan (512MB) insufficient for Dagster+daemon+dashboard+nginx - Standard plan (2GB) required for successful deployment
1 parent 266ff4c commit 4d9f8f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

render.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
repo: https://github.com/andrewm4894/anomstack.git
66
branch: main
77
region: oregon # Choose: oregon, frankfurt, singapore, ohio, virginia
8-
plan: starter # starter, standard, pro, pro_plus (upgrade as needed)
8+
plan: standard # standard (2GB) required - starter (512MB) causes OOM
99
dockerfilePath: ./docker/Dockerfile.render
1010
dockerContext: ./
1111
numInstances: 1

scripts/deployment/deploy_render_api.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ NC='\033[0m'
2020
PROFILE="demo"
2121
SERVICE_NAME="anomstack-demo"
2222
REGION="oregon"
23-
PLAN="starter"
23+
PLAN="standard" # 2GB RAM (starter=512MB is too small for Dagster+daemon+dashboard+nginx)
2424
DISK_SIZE_GB=10
2525
GITHUB_REPO="https://github.com/andrewm4894/anomstack"
2626
BRANCH=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "main")

0 commit comments

Comments
 (0)