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 ES|QL to categorize-text challenge #711

Closed
wants to merge 1 commit into from
Closed
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
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