Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce use_doc_values_sparse_index for the elastic/logs track #740

Closed
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 @@ -229,6 +229,7 @@ The following parameters are available:
* `recovery_small_max_batch_size` (default: `4MB`) - The maximum estimated size for the batch of translog operations to return.
* `recovery_large_max_batch_size` (default: `32MB`) - The maximum estimated size for the batch of translog operations to return.
* `recovery_max_operations_count` (default: `16777216`) - The maximum number of translog operations to return in a single batch.
* `use_doc_values_sparse_index` (default: unset) - Whether a doc values sparse index is used for the host.name and @timestamp fields.

### Data Download Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
{% if synthetic_source_keep %}
,"mapping.synthetic_source_keep": {{ synthetic_source_keep | tojson }}
{% endif %}
{% if use_doc_values_sparse_index %}
,"mapping.use_doc_values_sparse_index": {{ use_doc_values_sparse_index | tojson }}
{% endif %}
}
{% endif %}
}
Expand Down