微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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"
        }  
    }
}









        

 


                

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐