Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 1e7fc73

Browse files
authored
fix: reduce lambda memory for BatchReplayer (#322)
1 parent 26b29d4 commit 1e7fc73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/data-generator/batch-replayer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class BatchReplayer extends Construct {
124124
* Rewrite data
125125
*/
126126
const writeInBatchFn = new PreBundledFunction(this, 'WriteInBatch', {
127-
memorySize: 1024 * 5,
127+
memorySize: 3008,
128128
codePath: 'data-generator/resources/lambdas/write-in-batch',
129129
runtime: Runtime.PYTHON_3_8,
130130
handler: 'write-in-batch.handler',

0 commit comments

Comments
 (0)