一尘不染

Elasticsearch-如何添加术语?

elasticsearch

有没有一种方法可以将条件附加到值数组中?

例如,如果我的文档如下所示:

{
   "items": ["item1", "item2", "item3"]
}

我想在其后面附加“ item4”和“ item5”。

我必须在2个查询中这样做吗?一个加载当前值列表,然后更新该列表?还是有一种更优雅的方式让我在一个查询中附加这些项目?

我正在尝试使用Elastic4s做到这一点:

client.execute(ElasticDsl.update id id in indexName / documentType script {
  script(s"ctx._source.items += tag").params(Map("tag"->"item4"))
})

为了使用上面的代码片段,我需要启用groovy脚本,而且我不确定如何对多个项目执行此操作。

任何想法?


阅读 260

收藏
2020-06-22

共1个答案

一尘不染

这是如何实现此目标的完整示例。

合并新值到数组,并在之后使其唯一:

DELETE test/test/1

POST test/test/1
{
  "terms":["item1", "item2", "item3"]
}

GET test/test/1

POST test/test/1/_update
{
     "script" : " ctx._source.terms << newItems; ctx._source.terms = ctx._source.terms.flatten().unique()",
     "params" : {
         "newItems" : ["a","b"]
     }
}

确保在服务器配置中启用了脚本

user:/etc/elasticsearch# head elasticsearch.yml 
script.inline: true
script.indexed: true
...
2020-06-22