gpt4 book ai didi

elasticsearch - 如何使用From/Size控制Elasticsearch聚合结果?

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

我一直在尝试在Elasticsearch术语聚合中添加分页。在查询中,我们可以添加分页,例如

 {
"from": 0, // to add the start to control the pagination
"size": 10,
"query": { }
}

这很明显,但是当我想在聚合中添加分页时,我读了很多,但是找不到任何东西,我的代码看起来像这样,
{
"from": 0,
"size": 0,
"aggs": {
"group_by_name": {
"terms": {
"field": "name",
"size": 20
},
"aggs": {
"top_tag_hits": {
"top_hits": {
"size": 1
}
}
}
}
}
}

有什么方法可以创建带有函数或其他建议的分页?

最佳答案

好像您可能想要分区。 From the docs:

Sometimes there are too many unique terms to process in a single request/response pair so it can be useful to break the analysis up into multiple requests. This can be achieved by grouping the field’s values into a number of partitions at query-time and processing only one partition in each request.



基本上,您添加 "include": { "partition": n, "num_partitions": x },,其中 n是页面,而 x是页面数。

不幸的是,此功能是最近才添加的。如果可以在产生此功能的 GitHub Issue上相信标签,则至少需要使用Elasticsearch 5.2或更高版本。

关于elasticsearch - 如何使用From/Size控制Elasticsearch聚合结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43038131/

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