diff --git a/vectorsearch/README.md b/vectorsearch/README.md index 0842e690..221c6f9f 100644 --- a/vectorsearch/README.md +++ b/vectorsearch/README.md @@ -97,6 +97,9 @@ This workload allows the following parameters to be specified using `--workload- | query_count | Number of queries for search operation | | query_body | Json properties that will be merged with search body | | search_clients | Number of clients to use for running queries | +| repetitions | Number of repetitions until the data set is exhausted (default 1) | +| target_throughput | Target throughput for each query operation in requests per second (default 10) | +| time_period | The period of time dedicated for the benchmark execution in seconds (default 900) | diff --git a/vectorsearch/test_procedures/aoss/search-only-schedule.json b/vectorsearch/test_procedures/aoss/search-only-schedule.json index 6c5107d0..49d8d56d 100644 --- a/vectorsearch/test_procedures/aoss/search-only-schedule.json +++ b/vectorsearch/test_procedures/aoss/search-only-schedule.json @@ -5,6 +5,7 @@ "index": "{{ target_index_name | default('target_index') }}", "detailed-results": true, "k": {{ query_k | default(100) }}, + "repetitions": {{ repetitions | default(1) }}, "field" : "{{ target_field_name | default('target_field') }}", "data_set_format" : "{{ query_data_set_format | default('hdf5') }}", "data_set_path" : "{{ query_data_set_path }}", @@ -16,5 +17,7 @@ "id-field-name": "{{ id_field_name }}", "body": {{ query_body | default ({}) | tojson }} }, - "clients": {{ search_clients | default(1)}} + "clients": {{ search_clients | default(1)}}, + "target-throughput": {{ target_throughput | default(10) }}, + "time-period": {{ time_period | default(900) }} }