Elasticsearch修改mapping

来源:互联网 发布:虚拟股票操作软件 编辑:程序博客网 时间:2024/06/11 10:03

Elasticsearch 增加字段前,首先增加mapping,仅对索引中以后的数据生效。

POST http://192.168.208.32:9200/testindex/_mapping/data/

{  "properties": {    "title": {      "index": "analyzed",      "type": "string",      "fields": {        "raw": {          "index": "not_analyzed",          "type": "string"        }      }    }  }}


0 0
原创粉丝点击