当前位置:  开发笔记 > 编程语言 > 正文

使用Java API更新ElasticSearch索引中的嵌套字段

如何解决《使用JavaAPI更新ElasticSearch索引中的嵌套字段》经验,为你挑选了1个好方法。

我正在使用Java API对Elasticsearch进行CRUD操作。

我有一个带有嵌套字段的类型,我想更新此字段。

这是我对类型的映射:

"enduser": {
            "properties": {
                "location": {
                    "type": "nested",
                    "properties":{
                        "point":{"type":"geo_point"}
                    }
                }
            }
        }

当然,我的最终用户类型将具有其他参数。

现在,我想将此文档添加到我的嵌套字段中:

"location":{
          "name": "London",
           "point": "44.5, 5.2"
}

我在文档中搜索有关如何更新嵌套文档的信息,但找不到任何东西。例如,我在字符串中具有先前的JSON对象(我们将此字符串称为json)。我尝试了以下代码,但似乎无法正常工作:

params.put("location", json);
client.prepareUpdate(index, ElasticSearchConstants.TYPE_END_USER,id).setScript("ctx._source.location = location").setScriptParams(params).execute().actionGet();

我有来自Elasticsearch的解析错误。有人知道我在做什么错吗?



1> Alcanzar..:

您不需要脚本,只需对其进行更新。

    UpdateRequestBuilder br = client.prepareUpdate("index", "enduser", "1");
    br.setDoc("{\"location\":{ \"name\": \"london\", \"point\": \"44.5,5.2\" }}".getBytes());
    br.execute();

推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有