From b2cf829b66b97d34605ffbe2800174241dea823f Mon Sep 17 00:00:00 2001 From: roy-dydx <133032749+roy-dydx@users.noreply.github.com> Date: Tue, 3 Dec 2024 16:47:33 -0500 Subject: [PATCH] Adjust ECS memory and cpu (#150) --- indexer/locals.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/indexer/locals.tf b/indexer/locals.tf index 3322cd55..cad3782b 100644 --- a/indexer/locals.tf +++ b/indexer/locals.tf @@ -56,7 +56,7 @@ locals { }, "${local.service_names["comlink"]}" : { ecs_desired_count : var.comlink_ecs_desired_count, - task_definition_memory : 4096, + task_definition_memory : 1024, task_definition_cpu : 2048, is_public_facing : true, ports : [8080], @@ -102,7 +102,7 @@ locals { }, "${local.service_names["socks"]}" : { ecs_desired_count : var.socks_ecs_desired_count, - task_definition_memory : 16384, + task_definition_memory : 4096, task_definition_cpu : 8192, is_public_facing : true, ports : [8080, 8000], @@ -204,8 +204,8 @@ locals { }, "${local.service_names["vulcan"]}" : { ecs_desired_count : var.vulcan_ecs_desired_count, - task_definition_memory : 8192, - task_definition_cpu : 4096, + task_definition_memory : 512, + task_definition_cpu : 2048, is_public_facing : false, ports : [8080], health_check_port : 8080,