我正在从普通的 ES Http 调用迁移到 ES HighLevelJavaClient。
我想转换这个旧的实现 POST / _update_by_query
{
"script": {
"inline": "ctx._source.collibra_match_for = []"
},
"query": {
"bool": {
"filter": {
"script": {
"script": {
"source": "doc['collibra_match_for.keyword'].values.length > 0",
"lang": "painless"
}
}
}
}
}
}
到高级客户端代码。
我试过的代码是:
UpdateByQueryRequest request = new UpdateByQueryRequest();
request.setConflicts("proceed");
request.setQuery(QueryBuilders.boolQuery().filter(QueryBuilders.scriptQuery(new Script("doc['collibra_match_for.keyword'].values.length > 0"))));
request.setScript(new Script(ScriptType.INLINE, "painless","ctx._source.collibra_match_for = []",Collections.emptyMap()));
request.setRefresh(true);
try {
BulkByScrollResponse bulkResponse = esClient.updateByQuery(request, RequestOptions.DEFAULT);
long totalDocs = bulkResponse.getTotal();
} catch (IOException e) {
e.printStackTrace();
}
}
但我收到此错误:
Elasticsearch exception [type=exception, reason=Incorrect HTTP method for uri [/_update_by_query?requests_per_second=-1&ignore_unavailable=false&expand_wildcards=open&allow_no_indices=true&refresh=true&conflicts=proceed&timeout=1m] and method [POST], allowed: [DELETE, PUT, GET, HEAD]]
任何帮助将不胜感激 :)