我试图根据需要向文档中动态添加新的数组类型字段,如果该字段已经存在(即,其他人已经向该数组中添加了一个项目),则追加我的项目。如果不存在,则需要它来创建字段,然后附加我的项目。
当前,只有在我第一次创建该字段时才能追加,但是编写该字段的方式会覆盖现有的字段值(如果存在)。
# 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'}]
}
}
})
理想情况下,我想要的过程是
答案 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]}"