默认情况下,所有字段也在 _all 特殊字段中建立索引,这提供了所谓的开箱即用的包罗万象的功能。但是,您可以通过
include_in_all
选项为映射中的每个字段指定是否要将其添加到 _all 字段:
"person" : {
"properties" : {
"name" : {
"type" : "string", "store" : "yes", "include_in_all" : false
}
}
}
上面的示例禁用了 name 字段的默认行为,该字段不会成为 _all 字段的一部分。
否则,如果您根本不需要特定类型的 _all 字段,您可以像这样在映射中再次禁用它:
"person" : {
"_all" : {"enabled" : false},
"properties" : {
"name" : {
"type" : "string", "store" : "yes"
}
}
}
当您禁用它时,您的字段仍将单独索引,但您不会拥有 _all 提供的包罗万象的功能。然后,您将需要查询特定字段,而不是依赖 _all 特殊字段,仅此而已。事实上,当您查询并且不指定字段时,elasticsearch 会在后台查询 _all 字段,除非您覆盖要查询的默认字段。
每个字符串字段在映射配置中都有
index
参数,默认为 analyzed
。这意味着除了 _all 字段之外,每个字段都是单独索引的。
对于 _all 字段,参考文献中说:
默认情况下,它是启用的,并且所有字段都包含在其中以方便使用。
因此,要完全禁用字段的索引,您必须指定(如果启用了 _all 字段):
"mappings": {
"your_mapping": {
"properties": {
"field_not_to_index": {
"type": "string",
"include_in_all": false,
"index": "no"
}
}
}
}
对于应该查询的字段是否将其包含在 _all 字段中(使用
"index": "no"
来节省资源),如果您通过 _all 字段进行查询,或者如果您在这些字段上查询,则仅使用带有任何正数的 index
参数值(analyzed
或 not_analyzed
)并禁用 _all 字段以节省资源。
以下是了解elasticsearch中索引设置的重要文档页面 http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/mapping-intro.html
对于您的问题,理想情况下您应该在字段属性中将“index”标志设置为 no。
_all 自 6.0 起已被弃用。使用下面
"mappings": {
"dynamic":"false",
"properties": {
"field_to_index":{"index": true, "type": "text"}
}
根据es文档
将动态设置为 false 根本不会改变 _source 字段的内容。 _source 仍将包含您索引的整个 JSON 文档。但是,任何未知字段都不会添加到映射中,并且不可搜索。
您可以利用
enabled
字段禁用特定字段或整个映射。
ElasticSearch 文档
禁用字段映射(即
session_data
字段)
{
"mappings": {
"_doc": {
"properties": {
"session_data": {
"enabled": false
}
}
}
}
}
禁用整个映射
{
"mappings": {
"_doc": {
"enabled": false
}
}
}
将动态索引和_all索引设置为false。指定映射中的必填字段。 https://www.elastic.co/guide/en/elasticsearch/guide/current/dynamic-mapping.html
{
"mappings":{
"candidates":{
"_all":{
"enabled":false
},
"dynamic": "false",
"properties":{
"tags":{
"type":"text"
},
"derivedAttributes":{
"properties":{
"city":{
"type":"text"
},
"zip5":{
"type":"keyword"
}
}
}
}
}
}
}