From 7d88bd1577879e364ba55245b797645a790d9ae6 Mon Sep 17 00:00:00 2001 From: Oren Leiman Date: Wed, 24 Jul 2024 10:14:06 -0700 Subject: [PATCH] tweaking memory limits --- src/transform-sdk/tests/test_util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transform-sdk/tests/test_util.go b/src/transform-sdk/tests/test_util.go index c7dd5c53bbf1b..fef0a8ed2a08c 100644 --- a/src/transform-sdk/tests/test_util.go +++ b/src/transform-sdk/tests/test_util.go @@ -61,7 +61,7 @@ func startRedpanda(ctx context.Context) (*redpanda.Container, context.CancelFunc return nil }), redpanda.WithEnableWasmTransform(), - redpanda.WithBootstrapConfig("data_transforms_per_core_memory_reservation", 33554432), + redpanda.WithBootstrapConfig("data_transforms_per_core_memory_reservation", 135000000), redpanda.WithBootstrapConfig("data_transforms_per_function_memory_limit", 16777216), ) if err != nil {