trying to bump memory to make queries faster.

This commit is contained in:
2021-07-20 22:03:40 -07:00
parent 12d8aa8ad3
commit 85df01e4bc
2 changed files with 2 additions and 2 deletions

View File

@@ -92,5 +92,5 @@
"FARGATE"
],
"cpu": "2048",
"memory": "4096"
"memory": "8192"
}

View File

@@ -14,7 +14,7 @@ resource "aws_ecs_task_definition" "integreat_app" {
family = "integreat_app_${var.stage}"
container_definitions = file("${var.stage}-taskdef.json")
memory = 4096
memory = 8192
cpu = 2048
network_mode = "awsvpc"
requires_compatibilities = ["FARGATE"]