elasticseacrch 中如何处理子对象?
假设我们创建了两个父母和三个孩子。请注意,有两个具有 idc2
但具有不同父母的孩子:
curl -XPUT localhost:9200/test/parent/p1 -d'{
"name": "Parent 1"
}'
curl -XPUT localhost:9200/test/parent/p2 -d'{
"name": "Parent 2"
}'
curl -XPOST localhost:9200/test/child/_mapping -d '{
"child":{
"_parent": {"type": "parent"}
}
}'
curl -XPOST localhost:9200/test/child/c1?parent=p1 -d '{
"child": "Parent 1 - Child 1"
}'
curl -XPOST localhost:9200/test/child/c2?parent=p1 -d '{
"child": "Parent 1 - Child 2"
}'
curl -XPOST localhost:9200/test/child/c2?parent=p2 -d '{
"child": "Parent 2 - Child 2"
}'
_id
如果我们搜索孩子,我们会看到有两个孩子c2
curl -XGET localhost:9200/test/_search
{
"_shards": {
"failed": 0,
"successful": 5,
"total": 5
},
"hits": {
"hits": [
{
"_id": "c1",
"_index": "test",
"_score": 1.0,
"_source": {
"child": "Parent 1 - Child 1"
},
"_type": "child"
},
{
"_id": "c2",
"_index": "test",
"_score": 1.0,
"_source": {
"child": "Parent 1 - Child 2"
},
"_type": "child"
},
{
"_id": "c2",
"_index": "test",
"_score": 1.0,
"_source": {
"child": "Parent 2 - Child 2"
},
"_type": "child"
}
],
"max_score": 1.0,
"total": 3
},
"timed_out": false,
"took": 1
}
我该如何解决p1/c2
?在没有父子关系的情况下,_id
可以使用访问、更改或删除子对象。在我的情况下,我让 elasticsearch 创建id
对象。
要访问子对象,这_id
还不够:
curl -XGET localhost:9200/test/child/c2
我还必须指定父级:
curl -XGET localhost:9200/test/child/c2?parent=p1
在我的系统中更糟糕的是,有些对象我可以直接访问而parent
其他我无法访问。(为什么???)
如果我删除 c2 (没有父级!):
curl -XDELETE http://localhost:9200/test/child/c2
两个孩子都被删除。要只删除一个孩子,我必须使用?parent=p1
curl -XDELETE http://localhost:9200/test/child/c2?parent=p1
这是我的问题。
管理子对象身份的最佳实践是什么?
这是否意味着,我必须以某种方式手动将父 id 放入子对象中,然后将对象构造为
id?parent=parent_id
为什么elasticsearch不返回父ID?
如果我让 elasticseach 创建子对象的 id,它们是否保证是唯一的,或者不同父母的两个孩子是否会相同
id
?