文档-聚合查询-分组
# AggregationBuilders.terms
创建Test21_Doc_Agg_Terms
package com.stt.demo;
import org.apache.http.HttpHost;
import org.elasticsearch.action.search.SearchRequest;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestHighLevelClient;
import org.elasticsearch.search.aggregations.Aggregation;
import org.elasticsearch.search.aggregations.AggregationBuilders;
import org.elasticsearch.search.aggregations.bucket.terms.ParsedTerms;
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
import org.elasticsearch.search.builder.SearchSourceBuilder;
import java.io.IOException;
public class Test21_Doc_Agg_Terms {
public static void main(String[] args) throws IOException {
// 创建客户端
RestHighLevelClient client = new RestHighLevelClient(
RestClient.builder(new HttpHost("localhost", 9200, "http"))
);
// 创建查询请求对象
SearchRequest request = new SearchRequest();
request.indices("student");
// 构建查询请求体
SearchSourceBuilder builder = new SearchSourceBuilder()
.aggregation(AggregationBuilders.terms("age_groupby").field("age"));
builder.size(0);
request.source(builder);
SearchResponse response = client.search(request, RequestOptions.DEFAULT);
// 查询后匹配
System.out.println("took:" + response.getTook());
System.out.println("time out:" + response.isTimedOut());
for (Aggregation agg : response.getAggregations()) {
System.out.println(agg.getName());
for (Terms.Bucket bucket : ((ParsedTerms) agg).getBuckets()) {
System.out.println(bucket.getKey()+" doc_count:"+bucket.getDocCount());
}
}
// 关闭客户端
client.close();
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
返回
took:4ms
time out:false
age_groupby
30 doc_count:2
20 doc_count:1
40 doc_count:1
50 doc_count:1
1
2
3
4
5
6
7
2
3
4
5
6
7
Last Updated: 2022/02/05, 15:58:51