-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 5.9.6-SNAPSHOT
-
Fix Version/s: 6.0
-
Component/s: Elasticsearch
-
Tags:
The ES mapping excludes dc:description and note:note from the _all field. This is a side effect of setting the "index" parameter to "no" in the mapping. In order to correct that, the "include_in_all" setting must be explicitly set to "true".
"dc:description" : { "type" : "multi_field", "fields" : { "dc:description" : { "index" : "no", "include_in_all" : "true", "type" : "string" }, "fulltext" : { "boost": 1.5, "type": "string", "analyzer" : "fulltext" } } }
- is duplicated by
-
NXP-15398 Keyword search should search on content and description
- Resolved