From acff577c5abef548b1234d88b9a4f284f7fdef60 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Tue, 28 May 2024 18:28:32 +0100 Subject: Adjust K6 thresholds - Adjust timings based on previous runs. - Reduce from 5 to 4 parallel clients for CM handle searches to avoid OutOfMemoryErrors. Issue-ID: CPS-2208 Signed-off-by: danielhanrahan Change-Id: I339cc3df84b2295bb11371ab73b4948f43615c15 --- k6-tests/ncmp/10-mixed-load-test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'k6-tests/ncmp/10-mixed-load-test.js') diff --git a/k6-tests/ncmp/10-mixed-load-test.js b/k6-tests/ncmp/10-mixed-load-test.js index b2c20e1da..829219b4e 100644 --- a/k6-tests/ncmp/10-mixed-load-test.js +++ b/k6-tests/ncmp/10-mixed-load-test.js @@ -40,7 +40,7 @@ export const options = { cm_search_module: { executor: 'constant-vus', exec: 'cm_search_module', - vus: 5, + vus: 4, duration: '1m', }, }, @@ -49,9 +49,9 @@ export const options = { 'http_req_failed{scenario:passthrough_read}': ['rate == 0'], 'http_req_failed{scenario:id_search_module}': ['rate == 0'], 'http_req_failed{scenario:cm_search_module}': ['rate == 0'], - 'http_req_duration{scenario:passthrough_read}': ['avg <= 2540'], // DMI delay + 40 ms - 'http_req_duration{scenario:id_search_module}': ['avg <= 200'], - 'http_req_duration{scenario:cm_search_module}': ['avg <= 35_000'], + 'http_req_duration{scenario:passthrough_read}': ['avg <= 2600'], // DMI delay + 100 ms + 'http_req_duration{scenario:id_search_module}': ['avg <= 500'], + 'http_req_duration{scenario:cm_search_module}': ['avg <= 30000'], }, }; -- cgit 1.2.3-korg