其他分享
首页 > 其他分享> > 在原有es结构基础上增加nested结构

在原有es结构基础上增加nested结构

作者:互联网

PUT  http://ip:port/esindex/_mapping 

{
    "properties": {
        "COMPSCORELIST": {
            "type": "nested",
            "properties": {
                "COMPNAME": {
                    "type": "keyword"
                },
                "SCORE": {
                    "type": "float"
                }
            }
        }
    }
}
 

添加后的mappings

 

 

标签:http,mappings,keyword,nested,type,properties,es,结构
来源: https://www.cnblogs.com/sumafan/p/15507439.html