其他分享
首页 > 其他分享> > ElasticSearch中keyword的属性ignore_above详解

ElasticSearch中keyword的属性ignore_above详解

作者:互联网

ignore_above 含义

在ElasticSearch中keyword类型字段可以设置ignore_above属性(默认是10) ,表示最大的字段值长度,超出这个长度的字段将不会被索引,但是会存储。

测试

设置message 的长度最长为20,超过20的不被索引,这里的不被索引是这个字段不被索引,但是该document中的其他字段仍然可以被索引到。

PUT my_index
{
  "mappings": {
    "my_type": {
      "properties": {
        "message": {
          "type": "keyword",
          "ignore_above": 20 
        }
      }
    }
  }
}

插入数据:

PUT my_index/my_type/3 
{
  "message": "123456789"
}

PUT my_index/my_type/5
{
  "message": "123456789012345678901"
}

查询测试

欢迎关注博主微信公众号,多多交流 watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

标签:20,keyword,type,ignore,ElasticSearch,above,message,my
来源: https://blog.51cto.com/u_15278282/2933715