mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-26 23:07:45 +00:00
* Default include_type_name to false for get and put mappings. * Default include_type_name to false for get field mappings. * Add a constant for the default include_type_name value. * Default include_type_name to false for get and put index templates. * Default include_type_name to false for create index. * Update create index calls in REST documentation to use include_type_name=true. * Some minor clean-ups around the get index API. * In REST tests, use include_type_name=true by default for index creation. * Make sure to use 'expression == false'. * Clarify the different IndexTemplateMetaData toXContent methods. * Fix FullClusterRestartIT#testSnapshotRestore. * Fix the ml_anomalies_default_mappings test. * Fix GetFieldMappingsResponseTests and GetIndexTemplateResponseTests. We make sure to specify include_type_name=true during xContent parsing, so we continue to test the legacy typed responses. XContent generation for the typeless responses is currently only covered by REST tests, but we will be adding unit test coverage for these as we implement each typeless API in the Java HLRC. This commit also refactors GetMappingsResponse to follow the same appraoch as the other mappings-related responses, where we read include_type_name out of the xContent params, instead of creating a second toXContent method. This gives better consistency in the response parsing code. * Fix more REST tests. * Improve some wording in the create index documentation. * Add a note about types removal in the create index docs. * Fix SmokeTestMonitoringWithSecurityIT#testHTTPExporterWithSSL. * Make sure to mention include_type_name in the REST docs for affected APIs. * Make sure to use 'expression == false' in FullClusterRestartIT. * Mention include_type_name in the REST templates docs.
135 lines
3.4 KiB
Plaintext
135 lines
3.4 KiB
Plaintext
[[multi-fields]]
|
|
=== `fields`
|
|
|
|
It is often useful to index the same field in different ways for different
|
|
purposes. This is the purpose of _multi-fields_. For instance, a `string`
|
|
field could be mapped as a `text` field for full-text
|
|
search, and as a `keyword` field for sorting or aggregations:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
PUT my_index?include_type_name=true
|
|
{
|
|
"mappings": {
|
|
"_doc": {
|
|
"properties": {
|
|
"city": {
|
|
"type": "text",
|
|
"fields": {
|
|
"raw": { <1>
|
|
"type": "keyword"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
PUT my_index/_doc/1
|
|
{
|
|
"city": "New York"
|
|
}
|
|
|
|
PUT my_index/_doc/2
|
|
{
|
|
"city": "York"
|
|
}
|
|
|
|
GET my_index/_search
|
|
{
|
|
"query": {
|
|
"match": {
|
|
"city": "york" <2>
|
|
}
|
|
},
|
|
"sort": {
|
|
"city.raw": "asc" <3>
|
|
},
|
|
"aggs": {
|
|
"Cities": {
|
|
"terms": {
|
|
"field": "city.raw" <3>
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
<1> The `city.raw` field is a `keyword` version of the `city` field.
|
|
<2> The `city` field can be used for full text search.
|
|
<3> The `city.raw` field can be used for sorting and aggregations
|
|
|
|
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
|
|
fields using the <<indices-put-mapping,PUT mapping API>>.
|
|
|
|
==== Multi-fields with multiple analyzers
|
|
|
|
Another use case of multi-fields is to analyze the same field in different
|
|
ways for better relevance. For instance we could index a field with the
|
|
<<analysis-standard-analyzer,`standard` analyzer>> which breaks text up into
|
|
words, and again with the <<english-analyzer,`english` analyzer>>
|
|
which stems words into their root form:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
PUT my_index?include_type_name=true
|
|
{
|
|
"mappings": {
|
|
"_doc": {
|
|
"properties": {
|
|
"text": { <1>
|
|
"type": "text",
|
|
"fields": {
|
|
"english": { <2>
|
|
"type": "text",
|
|
"analyzer": "english"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
PUT my_index/_doc/1
|
|
{ "text": "quick brown fox" } <3>
|
|
|
|
PUT my_index/_doc/2
|
|
{ "text": "quick brown foxes" } <3>
|
|
|
|
GET my_index/_search
|
|
{
|
|
"query": {
|
|
"multi_match": {
|
|
"query": "quick brown foxes",
|
|
"fields": [ <4>
|
|
"text",
|
|
"text.english"
|
|
],
|
|
"type": "most_fields" <4>
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
|
|
<1> The `text` field uses the `standard` analyzer.
|
|
<2> The `text.english` field uses the `english` analyzer.
|
|
<3> Index two documents, one with `fox` and the other with `foxes`.
|
|
<4> Query both the `text` and `text.english` fields and combine the scores.
|
|
|
|
The `text` field contains the term `fox` in the first document and `foxes` in
|
|
the second document. The `text.english` field contains `fox` for both
|
|
documents, because `foxes` is stemmed to `fox`.
|
|
|
|
The query string is also analyzed by the `standard` analyzer for the `text`
|
|
field, and by the `english` analyzer for the `text.english` field. The
|
|
stemmed field allows a query for `foxes` to also match the document containing
|
|
just `fox`. This allows us to match as many documents as possible. By also
|
|
querying the unstemmed `text` field, we improve the relevance score of the
|
|
document which matches `foxes` exactly.
|