在elasticsearch中,每个文档都可以指定_parent
document, creating a one-to-many relationship。可以使用嵌套文档创建相同的关系吗?
它不会出现。下面是创建索引的命令,其映射具有为嵌套属性定义的_parent
。执行这些命令后,映射已成功创建,但_parent
关系不成功。我做错了还是不可能?
curl -XPUT localhost:9200/my_index
curl -XPUT localhost:9200/my_index/_mapping/new_obj -d '{
"new_obj" : {
"properties" : {
"my_prop" : { "type" : "string"},
"my_nested_prop" : {
"type" : "nested",
"_parent" : { "type" : "new_obj"},
"properties" : {
"amount" : { "type" : "integer" },
"description" : { "type" : "string" }
}
}
}
}
}'