-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Closed
Labels
Description
Description
All fields which support doc values have them enabled by default. Anyway, if sorting and/or aggregation and/or accessing a field from a script is not required users can disable doc values by specifying doc_values: false in index mappings.
LogsDB uses synthetic source by default and, as a result, fields without doc values cannot be reconstructed. If a field has doc_value: false and store: false in LogsDB we have to ways to deal with it:
- fallback to using
_ignored_sourceso that we can reconstruct the document contents including such fields too. - throw an error and require mappings not including
doc_values: false