ElasticSearch,将值附加到字段,但检查字段是否首先存在,如果不创建字段,则附加

时间:2019-05-27 02:10:01

标签: python elasticsearch

我试图根据需要向文档中动态添加新的数组类型字段,如果该字段已经存在(即,其他人已经向该数组中添加了一个项目),则追加我的项目。如果不存在,则需要它来创建字段,然后附加我的项目。

当前,只有在我第一次创建该字段时才能追加,但是编写该字段的方式会覆盖现有的字段值(如果存在)。

# Create the field, not ideal as it wipes the field if it existed already

        es.update(
            index='index_name',
            id='doc_id_987324bhashjgbasf',
            body={"doc": {
                'notes': []}})

# Append my value
    es.update(index='index_name', id='doc_id_987324bhashjgbasf',
              body={
                  "script": {
                      "source": "ctx._source.notes.addAll(params.new_note)",
                      "lang": "painless",
                      "params": {
                          "new_note": [{'note': 'Hello I am a note', 'user':'Ari'}]
                      }
                  }
              })

理想情况下,我想要的过程是

  1. 检查字段“注释”是否存在
  2. 如果存在,则在现有值后附加新值
  3. 如果不存在,请创建字段,然后附加我的值

1 个答案:

答案 0 :(得分:1)

logstash:

if [notes] {
    notes.add("NewItem");
} else {
   notes = new ArrayList();
   notes.add("NewItem");
}

elasticsearch:

"script": "if (ctx._source.containsKey(\"notes\")) {ctx._source.notes += value;} else {ctx._source.notes = [value]}"