You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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_source so that we can reconstruct the document contents including such fields too.
throw an error and require mappings not including doc_values: false
The text was updated successfully, but these errors were encountered:
This was implemented for number fields and keyword. Pretty much every other field that natively supports synthetic source won't work without doc values. This work is pending.
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
andstore: false
in LogsDB we have to ways to deal with it:_ignored_source
so that we can reconstruct the document contents including such fields too.doc_values: false
The text was updated successfully, but these errors were encountered: