Skip to content

Commit

Permalink
Adapt for asyncio (#108)
Browse files Browse the repository at this point in the history
With this commit we change some of our tracks to make sure nightly
Elasticsearch benchmarks continue to run smoothly with the new asyncio
load generator (see elastic/rally#935):

* We lower the target throughput of some queries
* We disable HTTP response compression for PMC scroll queries

Relates elastic/rally#935
Relates elastic/rally#941
  • Loading branch information
danielmitterdorfer committed Mar 30, 2020
1 parent 1e83b6d commit 171563a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geonames/challenges/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@
"operation": "term",
"warmup-iterations": 500,
"iterations": 1000,
"target-throughput": 200
"target-throughput": 150
},
{
"operation": "phrase",
"warmup-iterations": 500,
"iterations": 1000,
"target-throughput": 200
"target-throughput": 150
},
{
"operation": "country_agg_uncached",
Expand Down
2 changes: 2 additions & 0 deletions pmc/operations/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
"operation-type": "search",
"pages": 25,
"results-per-page": 100,
"#COMMENT": "Large responses cause overhead on the client when decompressing the response. Disable to avoid the overhead",
"response-compression-enabled": false,
"body": {
"query": {
"match_all": {}
Expand Down

0 comments on commit 171563a

Please sign in to comment.