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
Clarify ignore_above behavior with arrays of strings
Currently docs don't explain how `ignore_above` behaves with arrays of
strings.
Clarify how `ignore_above` applies for arrays of strings and
also note that all string(s) will still be visible in the
`_source` field.
Relates #33057
Copy file name to clipboardExpand all lines: docs/reference/mapping/params/ignore-above.asciidoc
+3
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
=== `ignore_above`
3
3
4
4
Strings longer than the `ignore_above` setting will not be indexed or stored.
5
+
For arrays of strings, `ignore_above` will be applied for each array element separately and string elements longer than `ignore_above` will not be indexed or stored.
6
+
7
+
NOTE: All strings/array elements will still be present in the `_source` field, if the latter is enabled which is the default in Elasticsearch.
0 commit comments