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
1 change: 1 addition & 0 deletions elastic/logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ The following parameters are available:
* `corpora_uri_base` (default: `https://rally-tracks.elastic.co`) - Specify the base location of the datasets used by this track.
* `lifecycle` (default: unset to fall back on Serverless detection) - Specifies the lifecycle management feature to use for data streams. Use `ilm` for index lifecycle management or `dlm` for data lifecycle management. By default, `dlm` will be used for benchmarking Serverless Elasticsearch.
* `workflow-request-cache` (default: `true`) - Explicit control of request cache query parameter in searches executed in a workflow. This can be further overriden at an operation level with `request-cache` parameter.
* `synthetic_source_keep` (default: unset) - Allows overriding the default synthetic source behaviour for all field types with the following values: `none` (equivalent to unset) - no source is stored, `arrays` - source stored as is only for multi-value (array) fields.

### Data Download Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
{% if index_mode %}
"index": {
"mode": {{ index_mode | tojson }},
{% if synthetic_source_keep and synthetic_source_keep != 'none' %}
"mapping": {
"synthetic_source_keep": "arrays"
"synthetic_source_keep": "{{ synthetic_source_keep }}"
}
{% endif %}
}
{% endif %}
}
Expand Down
1 change: 1 addition & 0 deletions elastic/security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ The following parameters are available:
* `wait_for_status` (default: `green`) - The track creates Data Streams prior to indexing. All created Data Streams must at least reach this status before indexing commences. Reduce to `yellow` for clusters where green isn't possible e.g. single node.
* `corpora_uri_base` (default: `https://rally-tracks.elastic.co`) - Specify the base location of the datasets used by this track.
* `index_mode` (default: unset) - A parameter meant to be used internally which defines one of the available indexing modes, "standard", "logsdb" or "time_series". If not set, "standard" is used.
* `synthetic_source_keep` (default: unset) - Allows overriding the default synthetic source behaviour for all field types with the following values: `none` (equivalent to unset) - no source is stored, `arrays` - source stored as is only for multi-value (array) fields.

### Data Generation Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
{% if index_mode %}
"index": {
"mode": {{ index_mode | tojson }},
{% if synthetic_source_keep and synthetic_source_keep != 'none' %}
"mapping": {
"synthetic_source_keep": "{{ synthetic_source_keep }}"
},
{% endif %}
"sort.field": [ "host.hostname", "@timestamp" ],
"sort.order": [ "asc", "desc" ],
"sort.missing": ["_first", "_last"]
Expand Down