aggregation java sum,Elasticsearch java API (17)Aggregations 聚合 函数

准备聚合请求编辑

这里有一个例子关于如何创建聚合的要求:

AggregationBuilder aggregation =

AggregationBuilders

.terms("agg").field("gender")

.subAggregation(

AggregationBuilders.topHits("top")

);

您可以使用大部分的选择等标准的搜索

from

,

size

,

sort

,

highlight

,

explain

AggregationBuilder aggregation =

AggregationBuilders

.terms("agg").field("gender")

.subAggregation(

AggregationBuilders.topHits("top")

.setExplain(true)

.setSize(1)

.setFrom(10)

);

使用聚合反应编辑

导入聚合定义类:

import org.elasticsearch.search.aggregations.bucket.terms.Terms;

import org.elasticsearch.search.aggregations.metrics.tophits.TopHits;

// sr is here your SearchResponse object

Terms agg = sr.getAggregations().get("agg");

// For each entry

for (Terms.Bucket entry : agg.getBuckets()) {

String key = entry.getKey(); // bucket key

long docCount = entry.getDocCount(); // Doc count

logger.info("key [{}], doc_count [{}]", key, docCount);

// We ask for top_hits for each bucket

TopHits topHits = entry.getAggregations().get("top");

for (SearchHit hit : topHits.getHits().getHits()) {

logger.info(" -> id [{}], _source [{}]", hit.getId(), hit.getSourceAsString());

}

}

基本上这将产生第一个例子:

key [male], doc_count [5107]

-> id [AUnzSZze9k7PKXtq04x2], _source [{"gender":"male",...}]

-> id [AUnzSZzj9k7PKXtq04x4], _source [{"gender":"male",...}]

-> id [AUnzSZzl9k7PKXtq04x5], _source [{"gender":"male",...}]

key [female], doc_count [4893]

-> id [AUnzSZzM9k7PKXtq04xy], _source [{"gender":"female",...}]

-> id [AUnzSZzp9k7PKXtq04x8], _source [{"gender":"female",...}]

-> id [AUnzSZ0W9k7PKXtq04yS], _source [{"gender":"female",...}]

脚本化的度规聚合编辑

下面是如何使用脚本化的度规聚合与Java API。

不要忘记添加Groovy在您的类路径中,如果你想运行Groovy脚本在嵌入式数据节点(例如单元测试)。例如,使用Maven,添加这种依赖性pom.xml文件:

org.codehaus.groovy

groovy-all

2.3.2

indy

准备聚合请求编辑

这里有一个例子关于如何创建聚合的要求:

MetricsAggregationBuilder aggregation =

AggregationBuilders

.scriptedMetric("agg")

.initScript("_agg['heights'] = []")

.mapScript(new Script("if (doc['gender'].value == \"male\") " +

"{ _agg.heights.add(doc['height'].value) } " +

"else " +

"{ _agg.heights.add(-1 * doc['height'].value) }"));

你也可以指定一个

combine

脚本将在每个碎片上执行:

MetricsAggregationBuilder aggregation =

AggregationBuilders

.scriptedMetric("agg")

.initScript(new Script("_agg['heights'] = []"))

.mapScript(new Script("if (doc['gender'].value == \"male\") " +

"{ _agg.heights.add(doc['height'].value) } " +

"else " +

"{ _agg.heights.add(-1 * doc['height'].value) }"))

.combineScript(new Script("heights_sum = 0; for (t in _agg.heights) { heights_sum += t }; return heights_sum"));

你也可以指定一个

reduce

脚本将执行被请求的节点:

MetricsAggregationBuilder aggregation =

AggregationBuilders

.scriptedMetric("agg")

.initScript(new Script("_agg['heights'] = []"))

.mapScript(new Script("if (doc['gender'].value == \"male\") " +

"{ _agg.heights.add(doc['height'].value) } " +

"else " +

"{ _agg.heights.add(-1 * doc['height'].value) }"))

.combineScript(new Script("heights_sum = 0; for (t in _agg.heights) { heights_sum += t }; return heights_sum"))

.reduceScript(new Script("heights_sum = 0; for (a in _aggs) { heights_sum += a }; return heights_sum"));

使用聚合反应编辑

导入聚合定义类:

import org.elasticsearch.search.aggregations.bucket.terms.Terms;

import org.elasticsearch.search.aggregations.metrics.tophits.TopHits;

// sr is here your SearchResponse object

ScriptedMetric agg = sr.getAggregations().get("agg");

Object scriptedResult = agg.aggregation();

logger.info("scriptedResult [{}]", scriptedResult);

请注意,结果取决于你的脚本。

对于第一个示例,这将主要生产:

scriptedResult object [ArrayList]

scriptedResult [ {

"heights" : [ 1.122218480146643, -1.8148918111233887, -1.7626731575142909, ... ]

}, {

"heights" : [ -0.8046067304119863, -2.0785486707864553, -1.9183567430207953, ... ]

}, {

"heights" : [ 2.092635728868694, 1.5697545960886536, 1.8826954461968808, ... ]

}, {

"heights" : [ -2.1863201099468403, 1.6328549117346856, -1.7078288405893842, ... ]

}, {

"heights" : [ 1.6043904836424177, -2.0736538674414025, 0.9898266674373053, ... ]

} ]

第二个例子会产生:

scriptedResult object [ArrayList]

scriptedResult [-41.279615707402876,

-60.88007362339038,

38.823270659734256,

14.840192739445632,

11.300902755741326]

最后一个例子将会产生:

scriptedResult object [Double]

scriptedResult [2.171917696507009]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值