From e276153abb7cbcc14c24b2d84bb62e591816c0e2 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:28:29 -0600 Subject: [PATCH] Add configurable parameters to geonames operations (#498) (#500) * add configurable params to leftover operations in geonames * remove client operations --------- (cherry picked from commit 1d3443a6b41f17f38755e820ec2ae2d5a68743a0) Signed-off-by: Michael Oviedo Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- geonames/test_procedures/default.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/geonames/test_procedures/default.json b/geonames/test_procedures/default.json index a9644c9d..217d59cf 100644 --- a/geonames/test_procedures/default.json +++ b/geonames/test_procedures/default.json @@ -449,27 +449,27 @@ }, { "operation": "significant_text_selective", - "warmup-iterations": 200, - "iterations": 100, - "target-throughput": 2 + "warmup-iterations": {{ significant_text_selective_warmup_iterations or warmup_iterations | default(200) | tojson }}, + "iterations": {{ significant_text_selective_iterations or iterations | default(100) | tojson }}, + "target-throughput": {{ significant_text_selective_target_throughput or target_throughput | default(2) | tojson }} }, { "operation": "significant_text_sampled_selective", - "warmup-iterations": 200, - "iterations": 100, - "target-throughput": 20 + "warmup-iterations": {{ significant_text_sampled_selective_warmup_iterations or warmup_iterations | default(200) | tojson }}, + "iterations": {{ significant_text_sampled_selective_iterations or iterations | default(100) | tojson }}, + "target-throughput": {{ significant_text_sampled_selective_target_throughput or target_throughput | default(20) | tojson }} }, { "operation": "significant_text_unselective", - "warmup-iterations": 50, - "iterations": 20, - "target-throughput": 0.04 + "warmup-iterations": {{ significant_text_unselective_warmup_iterations or warmup_iterations | default(50) | tojson }}, + "iterations": {{ significant_text_unselective_iterations or iterations | default(20) | tojson }}, + "target-throughput": {{ significant_text_unselective_target_throughput or target_throughput | default(0.04) | tojson }} }, { "operation": "significant_text_sampled_unselective", - "warmup-iterations": 200, - "iterations": 100, - "target-throughput": 6 + "warmup-iterations": {{ significant_text_sampled_unselective_warmup_iterations or warmup_iterations | default(200) | tojson }}, + "iterations": {{ significant_text_sampled_unselective_iterations or iterations | default(100) | tojson }}, + "target-throughput": {{ significant_text_sampled_unselective_target_throughput or target_throughput | default(6) | tojson }} } ] }