Skip to content

Commit

Permalink
add configurable iterations to nyc_taxis workload (#447) (#471)
Browse files Browse the repository at this point in the history
(cherry picked from commit f43ba3f)

Signed-off-by: Michael Oviedo <mikeovi@amazon.com>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 1186c0b commit 24b7b50
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions nyc_taxis/test_procedures/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,52 +55,52 @@
},
{
"operation": "default",
"warmup-iterations": 50,
"iterations": 100,
"warmup-iterations": {{ default_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ default_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ default_target_throughput or target_throughput | default(3) | tojson }},
"clients": {{ default_clients or search_clients | default(1) }}
"clients": {{ default_search_clients or search_clients | default(1) }}
},
{
"operation": "range",
"warmup-iterations": 50,
"iterations": 100,
"warmup-iterations": {{ range_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ range_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ range_target_throughput or target_throughput | default(0.7) | tojson }},
"clients": {{ range_clients or search_clients | default(1) }}
"clients": {{ range_search_clients or search_clients | default(1) }}
},
{
"operation": "distance_amount_agg",
"warmup-iterations": 50,
"iterations": 50,
"warmup-iterations": {{ distance_amount_agg_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ distance_amount_agg_iterations or iterations | default(50) | tojson }},
"target-throughput": {{ distance_amount_agg_target_throughput or target_throughput | default(2) | tojson }},
"clients": {{ distance_amount_agg_clients or search_clients | default(1) }}
"clients": {{ distance_amount_agg_search_clients or search_clients | default(1) }}
},
{
"operation": "autohisto_agg",
"warmup-iterations": 50,
"iterations": 100,
"warmup-iterations": {{ autohisto_agg_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ autohisto_agg_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ autohisto_agg_target_throughput or target_throughput | default(1.5) | tojson }},
"clients": {{ autohisto_agg_clients or search_clients | default(1) }}
"clients": {{ autohisto_agg_search_clients or search_clients | default(1) }}
},
{
"operation": "date_histogram_agg",
"warmup-iterations": 50,
"iterations": 100,
"warmup-iterations": {{ date_histogram_agg_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ date_histogram_agg_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ date_histogram_agg_target_throughput or target_throughput | default(1.5) | tojson }},
"clients": {{ date_histogram_agg_clients or search_clients | default(1) }}
"clients": {{ date_histogram_agg_search_clients or search_clients | default(1) }}
},
{
"operation": "desc_sort_tip_amount",
"warmup-iterations": 50,
"iterations": 100,
"warmup-iterations": {{ desc_sort_tip_amount_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ desc_sort_tip_amount_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ desc_sort_tip_amount_target_throughput or target_throughput | default(0.5) | tojson }},
"clients": {{ desc_sort_tip_amount_clients or search_clients | default(1) }}
"clients": {{ desc_sort_tip_amount_search_clients or search_clients | default(1) }}
},
{
"operation": "asc_sort_tip_amount",
"warmup-iterations": 50,
"iterations": 100,
"warmup-iterations": {{ asc_sort_tip_amount_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ asc_sort_tip_amount_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ asc_sort_tip_amount_target_throughput or target_throughput | default(0.5) | tojson }},
"clients": {{ asc_sort_tip_amount_clients or search_clients | default(1) }}
"clients": {{ asc_sort_tip_amount_search_clients or search_clients | default(1) }}
}
]
},
Expand Down

0 comments on commit 24b7b50

Please sign in to comment.