gpt4 book ai didi

elasticsearch - 如何寻址、删除或访问 ElasticSearch 中的子对象?

转载 作者:行者123 更新时间:2023-12-02 22:12:12 26 4
gpt4 key购买 nike

elasticseacrch 中的子对象是如何寻址的?

假设我们创建了两个 parent 和三个 child 。注意有两个id 为 c2 但 parent 不同的 child :

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"
}'

如果我们搜索 child ,我们会看到有两个 child 的 _idc2

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

两个 child 都被删除了。要只删除一个 child ,我必须使用 ?parent=p1

curl -XDELETE http://localhost:9200/test/child/c2?parent=p1

这是我的问题。

  • 管理子对象身份的最佳做法是什么?

  • 这是否意味着,我必须以某种方式手动将父 ID 放入子对象,然后将对象构造为 id?parent=parent_id

    <
  • 为什么elasticsearch不返回parent id?

  • 如果我让 elasticseach 创建子对象的 id,它们是否保证是唯一的,或者不同 parent 的两个 child 是否会得到相同的 id

最佳答案

子文档就是Elasticsearch中的普通文档,多了一个_parent字段指向父类型的文档。
访问子文档时,无论是索引时还是获取时,都需要在请求中指定parent id。这是因为父 ID 实际上用于子文档的路由(有关路由的示例 - http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search.html#search-routing)。
这意味着子文档根据 parent id 进行分片,因此它与父文档位于同一个分片上。

在您上面的示例中,可能发生的情况是您的每个 c2 文档都在一个单独的分片上创建 - 一个按其自己的 ID 分片,另一个(您指定父级的位置)根据父 ID 分片。

理解这一点很重要,这样您就不会在索引、获取和搜索之间出现不一致。因此,您需要记住在处理子文档时始终传递父级,以便将它们路由到正确的分片。

关于文档 ID - 您需要像对待所有其他文档一样对待它。这意味着它必须是唯一的,即使它们有不同的父级,也不能有 2 个具有相同 ID 的文档。
您可以使用父 id 作为子文档 id 的一部分(如您所建议的那样),或者如果在您的用例中有意义,则让 ES 生成一个唯一的 id。无论父级如何,ES 生成的文档 ID 都是唯一的。

关于取回父字段,需要显式请求,默认不返回。 (使用字段参数 - http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-get.html#get-fields 或在搜索中 - https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-stored-fields.html 请求它)。

关于elasticsearch - 如何寻址、删除或访问 ElasticSearch 中的子对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19862634/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com