gpt4 book ai didi

elasticsearch - Elasticsearch慢项聚合

转载 作者:行者123 更新时间:2023-12-03 00:39:27 29 4
gpt4 key购买 nike

我在es查询和聚合方面遇到了问题。所有es记录总数约为1亿,在添加词条聚合之前,我的查询速度很快,仅花费75毫秒,所有匹配计数为105。但是在添加聚合后,如下所示:

{
"query": {
...
},
"aggs": {
"index": {
"terms": {
"field": "index"
}
}
}
}

此查询将花费20秒!
我的问题是:我的查询结果计数只有105,为什么聚合这么慢?
感谢您的回复!

最佳答案

根据您对问题的了解,我认为这是您需要的:

{
"query": {
...
},
"aggs": {
"index": {
"terms": {
"field": "index",
"execution_hint": "map"
}
}
}
}

试试这个,让我知道。可以在 herehere中找到有关 execution_hint的说明和有助于解决您的问题的讨论。

关于elasticsearch - Elasticsearch慢项聚合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50893653/

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