Skip to content

Commit

Permalink
add configurable warmup iterations + iterations to geoshape, geopoint…
Browse files Browse the repository at this point in the history
…shape, geopoint workloads (#450)

Signed-off-by: Michael Oviedo <[email protected]>
  • Loading branch information
OVI3D0 authored Oct 17, 2024
1 parent df73e87 commit ca3f732
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions geopoint/test_procedures/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,29 +61,29 @@
},
{
"operation": "polygon",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ polygon_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ polygon_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ polygon_target_throughput or target_throughput | default(2) | tojson }},
"clients": {{ polygon_search_clients or search_clients | default(1) }}
},
{
"operation": "bbox",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ bbox_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ bbox_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ bbox_target_throughput or target_throughput | default(2) | tojson }},
"clients": {{ bbox_search_clients or search_clients | default(1) }}
},
{
"operation": "distance",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ distance_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ distance_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ distance_target_throughput or target_throughput | default(5) | tojson }},
"clients": {{ distance_search_clients or search_clients | default(1) }}
},
{
"operation": "distanceRange",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ distanceRange_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ distanceRange_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ distanceRange_target_throughput or target_throughput | default(0.5) | tojson }},
"clients": {{ distanceRange_search_clients or search_clients | default(1) }}
}
Expand Down
8 changes: 4 additions & 4 deletions geopointshape/test_procedures/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@
},
{
"operation": "polygon",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ polygon_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ polygon_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ polygon_target_throughput or target_throughput | default(2) | tojson }},
"clients": {{ polygon_search_clients or search_clients | default(1) }}
},
{
"operation": "bbox",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ bbox_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ bbox_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ bbox_target_throughput or target_throughput | default(2) | tojson }},
"clients": {{ bbox_search_clients or search_clients | default(1) }}
}
Expand Down
8 changes: 4 additions & 4 deletions geoshape/test_procedures/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@
},
{
"operation": "polygon",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ polygon_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ polygon_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ polygon_target_throughput or target_throughput | default(0.3) | tojson }},
"clients": {{ polygon_search_clients or search_clients | default(1) }}
},
{
"operation": "bbox",
"warmup-iterations": 200,
"iterations": 100,
"warmup-iterations": {{ bbox_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ bbox_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ bbox_target_throughput or target_throughput | default(0.25) | tojson }},
"clients": {{ bbox_search_clients or search_clients | default(1) }}
}
Expand Down

0 comments on commit ca3f732

Please sign in to comment.