Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions geonames/operations/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -438,4 +438,19 @@
}
}
}
},
{
"name": "numeric-term-cardinality-agg-high",
"operation-type": "search",
"body": {
"size": 0,
"aggs": {
"geonameids": {
"terms": {
"field": "geonameid",
"size": 50000
}
}
}
}
}
7 changes: 7 additions & 0 deletions geonames/test_procedures/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@
"iterations": {{ asc_sort_with_after_geonameid_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ asc_sort_with_after_geonameid_target_throughput or target_throughput | default(6) | tojson }},
"clients": {{ asc_sort_with_after_geonameid_search_clients or search_clients | default(1) }}
},
{
"operation": "numeric-term-cardinality-agg-high",
"warmup-iterations": {{ numeric_term_cardinality_agg_high_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ numeric_term_cardinality_agg_high_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ numeric_term_cardinality_agg_high_target_throughput or target_throughput | default(2) | tojson }},
"clients": {{ numeric_term_cardinality_agg_high_search_clients or search_clients | default(1) }}
}
]
},
Expand Down
Loading