Elasticsearch - 如何附加术语?

时间:2016-03-30 13:43:38

标签: elasticsearch elastic4s

有没有办法将术语附加到值数组中?

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

{
   "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脚本,我不知道如何使用多个项目。

有什么想法吗?

2 个答案:

答案 0 :(得分:4)

以下是如何实现这一目标的完整示例。

将新值合并到数组并在以下后使其唯一:

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

确保您在服务器配置中启用了scripting

user:/etc/elasticsearch# head elasticsearch.yml 
script.inline: true
script.indexed: true
...

答案 1 :(得分:-1)

尝试使用&#39;术语&#39;在您的代码中过滤。如果您使用的是NEST,则以下链接将非常有用https://nest.azurewebsites.net/nest/writing-queries.html