From 3c118aed2bebc4cf4fe0a3f29e4873be9eab6d02 Mon Sep 17 00:00:00 2001 From: Nathan Curtis Date: Fri, 8 Nov 2024 08:50:01 -0800 Subject: [PATCH] [TM-1451] Bump it up a bit more. --- cdk/service-stack/lib/service-stack.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cdk/service-stack/lib/service-stack.ts b/cdk/service-stack/lib/service-stack.ts index 26955fd..293e1bc 100644 --- a/cdk/service-stack/lib/service-stack.ts +++ b/cdk/service-stack/lib/service-stack.ts @@ -24,7 +24,8 @@ type Mutable = { const customizeFargate = (service: string, env: string, props: Mutable) => { if (service === "research-service") { - props.cpu = 1024; + props.cpu = 2048; + props.memoryLimitMiB = 4096; } return props;