From 71b830c891a4157b7ed6b33a297110da078d456b Mon Sep 17 00:00:00 2001 From: Alok Kumar Singh Date: Fri, 7 May 2021 16:35:54 +0530 Subject: [PATCH] Increased the batcher default https://github.com/practo/tipoca-stream/issues/186#issuecomment-834066682 --- controllers/batcher_deployment.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/batcher_deployment.go b/controllers/batcher_deployment.go index 82c5e9f78..bf44e852e 100644 --- a/controllers/batcher_deployment.go +++ b/controllers/batcher_deployment.go @@ -48,8 +48,8 @@ func applyBatcherSinkGroupDefaults( // defaults by sinkgroup switch sgType { case MainSinkGroup: - maxSizePerBatch = toQuantityPtr(resource.MustParse("0.5Mi")) - maxWaitSeconds = toIntPtr(60) + maxSizePerBatch = toQuantityPtr(resource.MustParse("0.8Mi")) + maxWaitSeconds = toIntPtr(450) maxConcurrency = toIntPtr(2) maxProcessingTime = &redshiftbatcher.DefaultMaxProcessingTime image = &defaultImage