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

2021/11/1 20:12:29

本文主要是介绍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"
        }  
    }
}









        

 


                



这篇关于ElasticSearch修改多层结构中的数据附java代码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程