Skip to content

Commit b069fe2

Browse files
committed
Update ECS task definition to increase CPU and memory allocation for the pathfinder service
1 parent 25df78d commit b069fe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/infra/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ const service = new awsx.ecs.FargateService("pathfinder-service", {
133133
container: {
134134
name: "pathfinder-app",
135135
image: image.imageUri,
136-
cpu: 512, // 0.5 vCPU
137-
memory: 1024, // 1GB - Next.js needs this
136+
cpu: 1024, // 1 vCPU
137+
memory: 2048, // 2GB
138138
essential: true,
139139
environment: [
140140
{

0 commit comments

Comments
 (0)