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
synthetic_source_keep is a mapping attribute added to Elasticsearch 8.16 that controls the behavior of a field under sythentic_source and LogsDB.
Integrations need to be able to specify this attribute to optimize the behavior of certain array fields in order to minimize storage costs. For example, an integration that stores a list of IP address would set synthetic_source_keep: none when the value is treated as a unsorted set (ordering does not matter and duplicate values have no meaning). Then the storage of the field can be optimized by not storing the original value in the _source.
The text was updated successfully, but these errors were encountered:
Issue with store resolved. It is enabled by default in text fields since 8.18, and default fields are generally not included in mappings. I am adjusting the test in #860.
synthetic_source_keep is a mapping attribute added to Elasticsearch 8.16 that controls the behavior of a field under sythentic_source and LogsDB.
Integrations need to be able to specify this attribute to optimize the behavior of certain array fields in order to minimize storage costs. For example, an integration that stores a list of IP address would set
synthetic_source_keep: none
when the value is treated as a unsorted set (ordering does not matter and duplicate values have no meaning). Then the storage of the field can be optimized by not storing the original value in the_source
.The text was updated successfully, but these errors were encountered: