Skip to content

Commit

Permalink
Add ES|QL to categorize-text challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-elastic committed Dec 11, 2024
1 parent 0a09c6a commit 1152a5b
Showing 1 changed file with 12 additions and 1 deletion.
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] %}
{
"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

0 comments on commit 1152a5b

Please sign in to comment.