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

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

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

添加后的mappings

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

 

上一篇:ElasticSearch创建动态模版与查询模版


下一篇:0617.-合并二叉树