eyalkoren
ee262954ee
Adding aggregations support for the _ignored
field ( #101373 )
...
Enables aggregations on the _ignored metadata field replacing the stored field
with doc values.
2024-04-29 16:41:34 +02:00
Felix Barnsteiner
f642b8a3aa
Add setting to ignore dynamic fields when field limit is reached ( #96235 )
...
Adds a new `index.mapping.total_fields.ignore_dynamic_beyond_limit`
index setting.
When set to `true`, new fields are added to the mapping as long as the
field limit (`index.mapping.total_fields.limit`) is not exceeded. Fields
that would exceed the limit are not added to the mapping, similar to
`dynamic: false`. Ignored fields are added to the `_ignored` metadata
field.
Relates to https://github.com/elastic/elasticsearch/issues/89911
To make this easier to review, this is split into the following PRs: -
[x] https://github.com/elastic/elasticsearch/pull/102915 - [x]
https://github.com/elastic/elasticsearch/pull/102936 - [x]
https://github.com/elastic/elasticsearch/pull/104769
Related but not a prerequisite: - [ ]
https://github.com/elastic/elasticsearch/pull/102885
2024-02-02 05:53:52 -05:00
Christoph Büscher
f522de6b56
[Docs] Clarify ignore_above behaviour ( #79705 )
...
Clarify that `keyword` fields that exceed the optional `ignore_above` setting
are inlcuded in the `_ignored` fields since 7.14.
Closes #79605
2021-10-25 20:27:02 +02:00
James Rodewig
9af74ec561
[DOCS] Remove added admons ( #69452 )
2021-02-23 10:35:21 -05:00
James Rodewig
97802d8aff
[DOCS] Change // CONSOLE comments to [source,console] ( #46441 )
2019-09-06 10:55:16 -04:00
Adrien Grand
7358946bda
Add a new _ignored
meta field. ( #29658 )
...
This adds a new `_ignored` meta field which indexes and stores fields that have
been ignored at index time because of the `ignore_malformed` option. It makes
malformed documents easier to identify by using `exists` or `term(s)` queries
on the `_ignored` field.
Closes #29494
2018-05-02 10:47:02 +02:00