From 61e4111c602c2bbd420e5c23bf71bbdd9a340468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lena=20Sch=C3=B6nburg?= Date: Tue, 10 Sep 2024 17:27:59 +0200 Subject: [PATCH 1/2] fix: use larger disks to avoid throttling As we saw in https://github.com/camunda/camunda/issues/21758, a 32 GiB disk is slightly too small for our default workload. --- charts/zeebe-benchmark/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/zeebe-benchmark/values.yaml b/charts/zeebe-benchmark/values.yaml index aa5d96c..0122a26 100644 --- a/charts/zeebe-benchmark/values.yaml +++ b/charts/zeebe-benchmark/values.yaml @@ -313,7 +313,7 @@ camunda-platform: # PvcAccessModes can be used to configure the persistent volume claim access mode https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes pvcAccessMode: [ "ReadWriteOnce" ] # PvcSize defines the persistent volume claim size, which is used by each broker pod https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims - pvcSize: 32Gi + pvcSize: 48Gi # PvcStorageClassName can be used to set the storage class name which should be used by the persistent volume claim. It is recommended to use a storage class, which is backed with a SSD. pvcStorageClassName: ssd From 7d4aef11272f705317348595d745c137bf35597f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lena=20Sch=C3=B6nburg?= Date: Tue, 10 Sep 2024 17:33:22 +0200 Subject: [PATCH 2/2] test: adjust golded file for new disk size --- .../test/golden/c8-zeebe-statefulset.golden.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/zeebe-benchmark/test/golden/c8-zeebe-statefulset.golden.yaml b/charts/zeebe-benchmark/test/golden/c8-zeebe-statefulset.golden.yaml index 65238bd..9948902 100644 --- a/charts/zeebe-benchmark/test/golden/c8-zeebe-statefulset.golden.yaml +++ b/charts/zeebe-benchmark/test/golden/c8-zeebe-statefulset.golden.yaml @@ -244,4 +244,4 @@ spec: storageClassName: ssd resources: requests: - storage: "32Gi" \ No newline at end of file + storage: "48Gi" \ No newline at end of file