Metric | Task | Baseline | Contender | Diff | Unit | Diff % |
---|---|---|---|---|---|---|
Cumulative indexing time of primary shards | 36.3556 | 35.7109 | -0.64477 | min | -1.77% | |
Min cumulative indexing time across primary shard | 0.273017 | 0.273467 | 0.00045 | min | +0.16% | |
Median cumulative indexing time across primary shard | 1.01327 | 1.0024 | -0.01087 | min | -1.07% | |
Max cumulative indexing time across primary shard | 17.4919 | 16.898 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE test | |
PUT /test | |
{ | |
"mappings": { | |
"properties": { | |
"semVer" : { | |
"type" : "version" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Retrieving nested fields with "fields API" | |
# simple example | |
DELETE my_index | |
PUT my_index | |
{ | |
"mappings": { | |
"properties": { | |
"obj": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE my_index | |
PUT my_index | |
{ | |
"mappings": { | |
"properties": { | |
"user": { | |
"type": "nested", | |
"properties": { | |
"name" : { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE test* | |
PUT test | |
{ | |
"mappings": { | |
"properties": { | |
"f1" : { | |
"type" : "keyword", | |
"ignore_above": 5 | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE test | |
PUT /test | |
{ | |
"settings": { | |
"index": { | |
"analysis": { | |
"analyzer": { | |
"synonym": { | |
"tokenizer": "standard", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Baseline: without concurrency (worker_threads_enabled: false) | |
Contender: with concurrency enabled (worker_threads_enabled: true) | |
./rally --skip-update compare --baseline 9082e0c5-59db-4d99-ad9a-92cdd74f6340 --contender ea836fe1-900c-4a83-bb56-be9edd5cc87c --report-file="compare_concurrency_experiments.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"loaddriver.instance.name": "gcp::n2_standard-32-128-16x1500GiB_nvme_local", | |
"elasticsearch.instance.name": "gcp::n2d_standard-16-68-4x375GiB_nvme_local", | |
"elasticsearch.remote.repo.url": "https://github.com/cbuescher/elasticsearch.git", | |
"elasticsearch.remote.repo.revision": "add-slice-logging-8-12", | |
"elasticsearch.architecture": { | |
"node": { | |
"count": 1, | |
"instance.name": "gcp::n2d_standard-16-68-4x375GiB_nvme_local", | |
"heap.size": "30g", |