gpt4 book ai didi

elasticsearch - 聚合数据中的Elasticsearch过滤器

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

我想在ES Java API中进行类似于“sql have”的查询。

select * from table group by oid having count(1) > 10

这是我制作的,但无法添加过滤器方法。
.aggregation( 
AggregationBuilders.terms( "aggs").field( "oid").filter... // cannot add filter method

我应该为此使用.script吗?

最佳答案

您可以为此使用 min_doc_count setting:

.aggregation( 
AggregationBuilders.terms("aggs")
.field( "oid")
.minDocCount(10) <----- add this

关于elasticsearch - 聚合数据中的Elasticsearch过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36472004/

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