From 3b357c8378f384087ca6f45cd3812f161594fd6b Mon Sep 17 00:00:00 2001 From: roy-dydx <133032749+roy-dydx@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:31:21 -0500 Subject: [PATCH 1/2] Update locals.tf --- indexer/locals.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/indexer/locals.tf b/indexer/locals.tf index cad3782..7622413 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 : 1024, + task_definition_memory : 4096, 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 : 4096, + task_definition_memory : 16384, 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 : 512, - task_definition_cpu : 2048, + task_definition_memory : 2048, + task_definition_cpu : 1024, is_public_facing : false, ports : [8080], health_check_port : 8080, From 23f292fe70db58481880a724ae6665f8db77c237 Mon Sep 17 00:00:00 2001 From: roy-dydx <133032749+roy-dydx@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:32:48 -0500 Subject: [PATCH 2/2] Update locals.tf --- indexer/locals.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indexer/locals.tf b/indexer/locals.tf index 7622413..5bb2b79 100644 --- a/indexer/locals.tf +++ b/indexer/locals.tf @@ -204,8 +204,8 @@ locals { }, "${local.service_names["vulcan"]}" : { ecs_desired_count : var.vulcan_ecs_desired_count, - task_definition_memory : 2048, - task_definition_cpu : 1024, + task_definition_memory : 4096, + task_definition_cpu : 2048, is_public_facing : false, ports : [8080], health_check_port : 8080,