Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add configurable iterations to nyc_taxis workload #447

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading