From 1f84bf83d2ca407d4503aa41088f8818dcb28454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Tue, 14 Jan 2025 13:33:29 +0100 Subject: [PATCH] Revert "Reduce resource usage even more on staging" This reverts commit 40deeae3b69e6eefea2036ea9aef2858654e51b5. Resources are _too_ constrainted now, and we're tripping timeouts. I guess we could raise timeouts, but since it's been confirmed we were not using too much resources, let's make this run faster. --- src/main/helm/values.staging.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/helm/values.staging.yaml b/src/main/helm/values.staging.yaml index 0af77bce..7b06bc06 100644 --- a/src/main/helm/values.staging.yaml +++ b/src/main/helm/values.staging.yaml @@ -3,21 +3,21 @@ app: QUARKUS_PROFILE: 'staging' # Avoid overloading the rather resource-constrained Search backend instance INDEXING_QUEUE_COUNT: '4' - INDEXING_BULK_SIZE: '5' + INDEXING_BULK_SIZE: '10' resources: limits: cpu: 1000m - memory: 750Mi + memory: 1Gi requests: cpu: 250m - memory: 400Mi + memory: 500Mi elasticsearch: envs: - ES_JAVA_OPTS: ' -Xms350m -Xmx350m ' + ES_JAVA_OPTS: ' -Xms500m -Xmx500m ' resources: limits: cpu: 500m memory: 1.0Gi requests: cpu: 250m - memory: 500Mi + memory: 750Mi