Skip to content

Commit

Permalink
Add a track for Metricbeat data (#56)
Browse files Browse the repository at this point in the history
Adds a new track that uses metricbeat data, taken from infra-stats cluster.
  • Loading branch information
Paul Sanwald committed Mar 18, 2019
1 parent 1952843 commit c3a3ec9
Show file tree
Hide file tree
Showing 5 changed files with 12,105 additions and 0 deletions.
61 changes: 61 additions & 0 deletions metricbeat/challenges/default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"name": "append-no-conflicts",
"description": "Indexes the whole document corpus using Elasticsearch default settings. We only adjust the number of replicas as we benchmark a single node cluster and Rally will only start the benchmark if the cluster turns green. Document ids are unique so all index operations are append only. After that a couple of queries are run.",
"default": true,
"schedule": [
{
"operation": "delete-index"
},
{
"operation": {
"operation-type": "create-index",
"settings": {{index_settings | default({}) | tojson}}
}
},
{
"name": "check-cluster-health",
"operation": {
"operation-type": "cluster-health",
"index": "metricbeat",
"request-params": {
"wait_for_status": "{{cluster_health | default('green')}}",
"wait_for_no_relocating_shards": "true"
}
}
},
{
"operation": "index-append",
"warmup-time-period": 0,
"clients": {{bulk_indexing_clients | default(8)}}
},
{
"name": "refresh-after-index",
"operation": "refresh",
"clients": 1
},
{
"operation": "force-merge",
"clients": 1
},
{
"name": "refresh-after-force-merge",
"operation": "refresh",
"clients": 1
},
{
"operation": "autohisto_agg",
"clients": 1,
"warmup-iterations": 50,
"iterations": 100,
"target-throughput": 2
},
{
"operation": "date_histogram_agg",
"clients": 1,
"warmup-iterations": 50,
"iterations": 100,
"target-throughput": 2
}
]
}

2 changes: 2 additions & 0 deletions metricbeat/files.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
documents.json.bz2
documents-1k.json.bz2
Loading

0 comments on commit c3a3ec9

Please sign in to comment.