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
33 changes: 27 additions & 6 deletions esql/challenges/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,28 @@
"tags": ["setup"]
},
{
"operation": "from_idx_limit_1000",
"operation": "from_idx_limit_1",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "from_idx_limit_10000",
"operation": "from_idx_limit_10",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "from_idx_limit_1",
"operation": "from_idx_limit_1000",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "from_idx_limit_10000",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
Expand All @@ -66,21 +73,28 @@


{
"operation": "from_idx_limit_1000_drop_null",
"operation": "from_idx_limit_1_drop_null",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "from_idx_limit_10000_drop_null",
"operation": "from_idx_limit_10_drop_null",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "from_idx_limit_1_drop_null",
"operation": "from_idx_limit_1000_drop_null",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "from_idx_limit_10000_drop_null",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
Expand All @@ -95,6 +109,13 @@
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "search_limit_10",
"tags": ["esql_large_schema"],
"clients": {{query_clients | default(1)}},
"warmup-iterations": 10,
"iterations": 100
},
{
"operation": "search_limit_1000",
"tags": ["esql_large_schema"],
Expand Down
50 changes: 34 additions & 16 deletions esql/operations/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@
"ingest-percentage": {{ingest_percentage | default(100)}}
},

{
"name": "from_idx_limit_1",
"operation-type": "esql",
"query": "FROM idx_* | limit 1"
},
{
"name": "from_idx_limit_10",
"operation-type": "esql",
"query": "FROM idx_* | limit 10"
},
{
"name": "from_idx_limit_1000",
"operation-type": "esql",
Expand All @@ -22,32 +32,32 @@
"operation-type": "esql",
"query": "FROM idx_* | limit 10000"
},

{
"name": "from_idx_limit_1",
"name": "from_idx_limit_1_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 1"
"query": "FROM idx_* | limit 1",
"request-params": { "drop_null_columns": true }
},

{
"name": "from_idx_limit_1000_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 1000",
"request-params": { "drop_null_columns": true }
"name": "from_idx_limit_10_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 10",
"request-params": { "drop_null_columns": true }
},
{
"name": "from_idx_limit_10000_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 10000",
"request-params": { "drop_null_columns": true }
"name": "from_idx_limit_1000_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 1000",
"request-params": { "drop_null_columns": true }
},
{
"name": "from_idx_limit_1_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 1",
"request-params": { "drop_null_columns": true }
"name": "from_idx_limit_10000_drop_null",
"operation-type": "esql",
"query": "FROM idx_* | limit 10000",
"request-params": { "drop_null_columns": true }
},


{
"name": "search_limit_1",
"operation-type": "search",
Expand All @@ -56,6 +66,14 @@
"size": 1
}
},
{
"name": "search_limit_10",
"operation-type": "search",
"index": "idx_*",
"body": {
"size": 10
}
},
{
"name": "search_limit_1000",
"operation-type": "search",
Expand Down
Loading