https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html
考虑:
PUT my_index
{
"mappings": {
"_doc": {
"properties": {
"user": {
"type": "nested"
}
}
}
}
}
PUT my_index/_doc/1
{
"group" : "fans",
"user" : [
{
"first" : "John",
"last" : "Smith"
},
{
"first" : "Alice",
"last" : "White"
}
]
}
当我运行一个无痛的脚本时:
ctx._source.user.add({
"first" : "Foo",
"last" : "Bar"
})
它不工作。我试过但找不到其他人发起的任何相关文件或讨论。