Remove mentions of "fields with the same name in the same index" (#43077)
Together with types removal, any mention of "fields with the same name in the same index" doesn't make sense anymore. (cherry picked from commit c5190106cbd4c007945156249cce462956933326)
This commit is contained in:
parent
fe0f9055d8
commit
d684119618
|
@ -47,8 +47,7 @@ PUT my_index/_doc/2
|
|||
<1> The `number_one` field will contain the integer `10`.
|
||||
<2> This document will be rejected because coercion is disabled.
|
||||
|
||||
TIP: The `coerce` setting is allowed to have different settings for fields of
|
||||
the same name in the same index. Its value can be updated on existing fields
|
||||
TIP: The `coerce` setting value can be updated on existing fields
|
||||
using the <<indices-put-mapping,PUT mapping API>>.
|
||||
|
||||
[[coerce-setting]]
|
||||
|
|
|
@ -46,8 +46,7 @@ PUT my_index/_doc/2
|
|||
<1> This document will have the `text` field indexed, but not the `number_one` field.
|
||||
<2> This document will be rejected because `number_two` does not allow malformed values.
|
||||
|
||||
TIP: The `ignore_malformed` setting is allowed to have different settings for
|
||||
fields of the same name in the same index. Its value can be updated on
|
||||
TIP: The `ignore_malformed` setting value can be updated on
|
||||
existing fields using the <<indices-put-mapping,PUT mapping API>>.
|
||||
|
||||
|
||||
|
|
|
@ -60,8 +60,7 @@ GET my_index/_search
|
|||
|
||||
NOTE: Multi-fields do not change the original `_source` field.
|
||||
|
||||
TIP: The `fields` setting is allowed to have different settings for fields of
|
||||
the same name in the same index. New multi-fields can be added to existing
|
||||
TIP: New multi-fields can be added to existing
|
||||
fields using the <<indices-put-mapping,PUT mapping API>>.
|
||||
|
||||
==== Multi-fields with multiple analyzers
|
||||
|
|
|
@ -11,11 +11,10 @@ don't need scoring on a specific field, you should disable norms on that
|
|||
field. In particular, this is the case for fields that are used solely for
|
||||
filtering or aggregations.
|
||||
|
||||
TIP: The `norms` setting must have the same setting for fields of the
|
||||
same name in the same index. Norms can be disabled on existing fields using
|
||||
TIP: Norms can be disabled on existing fields using
|
||||
the <<indices-put-mapping,PUT mapping API>>.
|
||||
|
||||
Norms can be disabled (but not reenabled) after the fact, using the
|
||||
Norms can be disabled (but not reenabled after the fact), using the
|
||||
<<indices-put-mapping,PUT mapping API>> like so:
|
||||
|
||||
[source,js]
|
||||
|
|
Loading…
Reference in New Issue