编程语言
首页 > 编程语言> > ElasticSearch修改多层结构中的数据附java代码

ElasticSearch修改多层结构中的数据附java代码

作者:互联网

需求

        多层级关系,需要修改es_KIE下medical_ner,case_info中字段的值

参考网上帖子修改的写法

request.index(esInfo.getIndex()) //索引名
        .id(timelineSearch.getId())//id
        .doc(
                XContentFactory.jsonBuilder()
                   .startObject()
                   .field("es_KIE.case_info.hosptial",timelineSearch.getHospital())
                   .field("es_KIE.medical_ner.symptom",timelineSearch.getSymptom())
                   .field("es_KIE.medical_ner.cure", timelineSearch.getCure())
                   .field("es_KIE.medical_ner.es_map_cls",timelineSearch.getEsMapCls())
                   .endObject());

 执行完会发现响应"OK",没有报错,但是es库里值未改变

成功修改的写法:(多层嵌套)

        HashMap<String,Object> medicalNerMap = new HashMap<>();
        medicalNerMap.put("symptom",timelineSearch.getSymptom());
        medicalNerMap.put("cure",timelineSearch.getCure());
        HashMap<String, Object> caseInfoMap = new HashMap<>();
        caseInfoMap.put("hospital",timelineSearch.getHospital());
        HashMap<String,Object> esKIEMap = new HashMap<>();
        esKIEMap.put("medical_ner",medicalNerMap);
        esKIEMap.put("case_info",caseInfoMap);
        esKIEMap.put("es_map_cls",timelineSearch.getEsMapCls());
        HashMap<String,Object> bodyMap = new HashMap<>();
        bodyMap.put("es_KIE", esKIEMap);
        UpdateRequest request =
                 new UpdateRequest(esInfo.getIndex(),timelineSearch.getId());
        request.doc(JSON.toJSONString(bodyMap), XContentType.JSON);
        UpdateResponse response =         
                 restHighLevelClient.update(request,RequestOptions.DEFAULT);
捕获下异常就可以

KQL:
POST common_dev/_update/0000739386_00
{
    "doc":{
        "es_KIE":{
          "medical_ner":{
            "symptom":["xxx","xxx"],
            "cure":["xxx",
                "xxx"]
          },
          "case_info":{
            "hospital":"xxxx"
          },
          "es_map_cls":"xxxx"
        }  
    }
}









        

 


                

标签:java,HashMap,多层,ElasticSearch,KIE,timelineSearch,put,ner,es
来源: https://blog.csdn.net/weixin_45795306/article/details/121085484