From c09266c2ef0335302e6b56d1b5ad025c78ff26e1 Mon Sep 17 00:00:00 2001 From: StephenBedard <17891885+StephenBedard@users.noreply.github.com> Date: Wed, 6 Dec 2023 11:37:42 -0800 Subject: [PATCH] increase lambda memory (#1201) --- src/deployments/cdk/src/deployments/metadata-collection/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/deployments/cdk/src/deployments/metadata-collection/index.ts b/src/deployments/cdk/src/deployments/metadata-collection/index.ts index 0c0fbb682..2e1a19df7 100644 --- a/src/deployments/cdk/src/deployments/metadata-collection/index.ts +++ b/src/deployments/cdk/src/deployments/metadata-collection/index.ts @@ -183,6 +183,7 @@ export function createMetadataService(props: MetadataServiceProps) { role: lambdaRole, handler: 'index.metadataCollection', timeout: cdk.Duration.minutes(10), + memorySize: 512, environment: { ACCELERATOR_PREFIX: props.acceleratorPrefix, BUCKET_NAME: bucketName,