Skip to content
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
13 changes: 12 additions & 1 deletion elastic/logs/challenges/categorize-text.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% import "rally.helpers" as rally %}
{% set shard_size_list = [10, 100, 1000] %}
{% set shard_size_list = [10, 100, 1000, 1000000000] %}
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This "unlimited" shard_size is (currently) necessary to fairly compare ES|QL and query DSL, because ES|QL only supports unlimited shard_size.

{
"name": "categorize-text",
"description": "Checks the performance of the categorize text aggregation",
Expand Down Expand Up @@ -107,6 +107,17 @@
"target-throughput": 100
},
{% endfor %}
{
"operation": {
"name": "categorize_text_esql",
"operation-type": "esql",
"query": "FROM categorize-text-index-alias | STATS COUNT() BY CATEGORIZE(message)"
},
"clients": 8,
"warmup-iterations": {{ warmup_iterations | default(3) }},
"iterations": {{ iterations | default(10) }},
"target-throughput": 100
},
{
"operation": {
"name": "remove-categorize-text-index-alias",
Expand Down
Loading