gpt4 book ai didi

父属性上的 Elasticsearch 聚合

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

我有一个父/子关系并且正在搜索 child 。

是否可以在父属性上创建聚合?

例如parent 是 POST,children 是 COMMENT。如果父项具有“类别”属性,是否可以搜索 COMMENT 并对父项 POST 的类别进行聚合?

最佳答案

这应该很容易,我觉得你的问题指的是别的东西:

GET /my_index/post/_search    # query the POSTs type
{
"query": {
"has_child": {
"type": "comment", # this is the COMMENT
"query": {
"match": {
"data": "whatever" # query the content of the COMMENT
}
}
}
},
"aggs": {
"categories_agg": {
"terms": {
"field": "category" # aggregate on the category of the POST (since the POST is the type we query in the URL)
}
}
}
}

关于父属性上的 Elasticsearch 聚合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27028245/

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