Skip to content

Commit

Permalink
Expose recency as parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmitterdorfer committed Jun 29, 2018
1 parent 1b0ff78 commit cd850be
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions geonames/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ This track allows to overwrite the following parameters with Rally 0.8.0+ using
* `bulk_indexing_clients` (default: 8): Number of clients that issue bulk indexing requests.
* `ingest_percentage` (default: 100): A number between 0 and 100 that defines how much of the document corpus should be ingested.
* `conflict_probability` (default: 25): A number between 0 and 100 that defines the probability of id conflicts. This requires to run the respective challenge.
* `recency` (default: 0): A number between 0 and 1 that defines whether to bias towards more recent ids when simulating conflicts. See the [Rally docs](http://esrally.readthedocs.io/en/latest/track.html#bulk) for the full definition of this parameter. This requires to run the respective challenge.
* `number_of_replicas` (default: 0)
* `number_of_shards` (default: 5)
* `source_enabled` (default: true): A boolean defining whether the `_source` field is stored in the index.
Expand Down
3 changes: 2 additions & 1 deletion geonames/operations/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"bulk-size": {{bulk_size | default(5000)}},
"ingest-percentage": {{ingest_percentage | default(100)}},
"conflicts": "random",
"conflict-probability": {{conflict_probability | default(25)}}
"conflict-probability": {{conflict_probability | default(25)}},
"recency": {{recency | default(0)}}
},
{
"name": "default",
Expand Down
1 change: 1 addition & 0 deletions geopoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This track allows to overwrite the following parameters with Rally 0.8.0+ using
* `bulk_indexing_clients` (default: 8): Number of clients that issue bulk indexing requests.
* `ingest_percentage` (default: 100): A number between 0 and 100 that defines how much of the document corpus should be ingested.
* `conflict_probability` (default: 25): A number between 0 and 100 that defines the probability of id conflicts. This requires to run the respective challenge.
* `recency` (default: 0): A number between 0 and 1 that defines whether to bias towards more recent ids when simulating conflicts. See the [Rally docs](http://esrally.readthedocs.io/en/latest/track.html#bulk) for the full definition of this parameter. This requires to run the respective challenge.
* `number_of_replicas` (default: 0)
* `number_of_shards` (default: 5)
* `source_enabled` (default: true): A boolean defining whether the `_source` field is stored in the index.
Expand Down
3 changes: 2 additions & 1 deletion geopoint/operations/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"bulk-size": {{bulk_size | default(5000)}},
"ingest-percentage": {{ingest_percentage | default(100)}},
"conflicts": "random",
"conflict-probability": {{conflict_probability | default(25)}}
"conflict-probability": {{conflict_probability | default(25)}},
"recency": {{recency | default(0)}}
},
{
"name": "polygon",
Expand Down
1 change: 1 addition & 0 deletions pmc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ This track allows to overwrite the following parameters with Rally 0.8.0+ using
* `bulk_indexing_clients` (default: 8): Number of clients that issue bulk indexing requests.
* `ingest_percentage` (default: 100): A number between 0 and 100 that defines how much of the document corpus should be ingested.
* `conflict_probability` (default: 25): A number between 0 and 100 that defines the probability of id conflicts. This requires to run the respective challenge.
* `recency` (default: 0): A number between 0 and 1 that defines whether to bias towards more recent ids when simulating conflicts. See the [Rally docs](http://esrally.readthedocs.io/en/latest/track.html#bulk) for the full definition of this parameter. This requires to run the respective challenge.
* `number_of_replicas` (default: 0)
* `number_of_shards` (default: 5)
* `source_enabled` (default: true): A boolean defining whether the `_source` field is stored in the index.
Expand Down
3 changes: 2 additions & 1 deletion pmc/operations/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"bulk-size": {{bulk_size | default(500)}},
"ingest-percentage": {{ingest_percentage | default(100)}},
"conflicts": "random",
"conflict-probability": {{conflict_probability | default(25)}}
"conflict-probability": {{conflict_probability | default(25)}},
"recency": {{recency | default(0)}}
},
{
"name": "default",
Expand Down

0 comments on commit cd850be

Please sign in to comment.