5

我正在尝试通过弹性搜索脚本使用 Java Api 更新索引中的多个值。但无法更新字段。

示例代码:-

1:

UpdateResponse response = request.setScript("ctx._source").setScriptParams(scriptParams).execute().actionGet();

2:

UpdateResponse response = request.setScript("ctx._source.").setScriptParams(scriptParams).execute().actionGet();

如果我在 ("ctx._source.") 中提到 .(dot) 得到非法参数异常,并且如果我不使用 dot,则不会出现任何异常,但索引中的值没有得到更新。谁能告诉我解决这个问题的解决方案。

4

4 回答 4

13

首先ctx._source,正如其中一位评论者已经指出的那样,您的脚本 ( ) 没有做任何事情。如果你想更新,比如说,字段“a”,那么你需要一个脚本,比如:

ctx._source.a = "foobar"

这会将字符串“foobar”分配给字段“a”。不过,您可以做的不仅仅是简单的分配。查看文档以获取更多详细信息和示例:

http://www.elasticsearch.org/guide/reference/api/update/

也可以使用一个脚本更新多个字段。您可以使用分号来分隔不同的 MVEL 指令。例如:

ctx._source.a = "foo"; ctx._source.b = "bar"
于 2013-08-15T11:50:35.207 回答
5

在弹性搜索中有一个更新 Java API。看下面的代码

client.prepareUpdate("index","typw","1153")
            .addScriptParam("assignee", assign)
             .addScriptParam("newobject", responsearray)
            .setScript("ctx._source.assignee=assignee;ctx._source.responsearray=newobject ").execute().actionGet();

在这里,分配变量包含对象值,响应数组变量包含数据列表。

于 2014-11-13T06:43:32.873 回答
1

您可以使用以下代码使用 spring java 客户端执行相同的操作。我还列出了代码中使用的依赖项。

import org.elasticsearch.action.update.UpdateRequest;

import org.elasticsearch.index.query.QueryBuilder;

import org.springframework.data.elasticsearch.core.query.UpdateQuery;

import org.springframework.data.elasticsearch.core.query.UpdateQueryBuilder;

private UpdateQuery updateExistingDocument(String Id) {
    // Add updatedDateTime, CreatedDateTime, CreateBy, UpdatedBy field in existing documents in Elastic Search Engine
    UpdateRequest updateRequest = new UpdateRequest().doc("UpdatedDateTime", new Date(), "CreatedDateTime", new Date(), "CreatedBy", "admin", "UpdatedBy", "admin");

    // Create updateQuery
    UpdateQuery updateQuery = new UpdateQueryBuilder().withId(Id).withClass(ElasticSearchDocument.class).build();
    updateQuery.setUpdateRequest(updateRequest);

    // Execute update
     elasticsearchTemplate.update(updateQuery);
}
于 2015-11-18T04:07:51.903 回答
0
 XContentType contentType = 
 org.elasticsearch.client.Requests.INDEX_CONTENT_TYPE;
 public XContentBuilder getBuilder(User assign){
 try {
      XContentBuilder builder = XContentFactory.contentBuilder(contentType);
        builder.startObject();
      Map<String,?> assignMap=objectMap.convertValue(assign, Map.class);
                 builder.field("assignee",assignMap);
      return builder;
  } catch (IOException e) {
                log.error("custom field index",e);
}
      IndexRequest indexRequest = new IndexRequest();
        indexRequest.source(getBuilder(assign));
        UpdateQuery updateQuery = new UpdateQueryBuilder()
                                        .withType(<IndexType>)
                                        .withIndexName(<IndexName>)
                                        .withId(String.valueOf(id))
                                        .withClass(<IndexClass>)
                                        .withIndexRequest(indexRequest)
                                        .build();
于 2019-03-02T07:08:32.377 回答