如何在ElasticSearch中进行嵌套聚合,其中聚合超过了sub-agg的结果

时间:2017-04-28 23:17:27

标签: elasticsearch kibana

我正在使用ElasticSearch 5.3。如果您能指导我如何在ES或Kibana中完成这项工作,我们将不胜感激。我已经阅读了文档,特别是关于范围,嵌套和管道聚合的文档,并且根本无法获得任何工作或生成我所追求的内容。

我不想用通用术语描述我想要的东西,而是将我的问题表述为关系数据库问题:

这是我的表:

CREATE TABLE metrics
    (`host` varchar(50), `counter` int, `time` int)
;

INSERT INTO metrics
    (`host`, `counter`, `time`)
VALUES
    ('host1', 3, 1),
    ('host2', 2, 2),
    ('host3', 1, 3)
    ,('host1', 5, 4)
    ,('host2', 2, 5)
    ,('host3', 2, 6)
    ,('host1', 9, 7)
    ,('host2', 3, 8)
    ,('host3', 5, 9)
;

我想获取所有主机的计数器总值。请注意,每个主机都会为某些计数器发出不断增加的值,因此我不能只为每条记录添加计数器。相反,我需要使用以下SQL:

select sum(max_counter)
from ( select max(counter) as max_counter
    from metrics
    where time > 0 AND time < 10
    group by host) as temptable;

产生正确的结果:17(= 9 + 3 + 5)

1 个答案:

答案 0 :(得分:1)

您可以通过管道聚合实现它

{
    "size": 0,
    "aggs": {
        "hosts": {
            "terms": {
                "field": "host"
            },
            "aggs": {
                "maxCounter": {
                    "max": {
                        "field": "counter"
                    }
                }
            }
        },
        "sumCounter": {
            "sum_bucket": {
                "buckets_path": "hosts>maxCounter"
            }
        }
    },
    "query": {
        "range": {
            "time": {
                "gt": 0.0,
                "lt": 10.0
            }
        }
    }
}

首先,您按host聚合中的hosts字段对条目进行分组。然后在其中应用max聚合。然后添加sum_bucket聚合,该聚合接受前一个的结果并返回所需的总和。您还可以使用range查询过滤条目。

这是一个结果

{
    "took": 22,
    "timed_out": false,
    "_shards": {
        "total": 5,
        "successful": 5,
        "failed": 0
    },
    "hits": {
        "total": 9,
        "max_score": 0.0,
        "hits": []
    },
    "aggregations": {
        "hosts": {
            "doc_count_error_upper_bound": 0,
            "sum_other_doc_count": 0,
            "buckets": [
                {
                    "key": "host1",
                    "doc_count": 3,
                    "maxCounter": {
                        "value": 9.0
                    }
                },
                {
                    "key": "host2",
                    "doc_count": 3,
                    "maxCounter": {
                        "value": 3.0
                    }
                },
                {
                    "key": "host3",
                    "doc_count": 3,
                    "maxCounter": {
                        "value": 5.0
                    }
                }
            ]
        },
        "sumCounter": {
            "value": 17.0
        }
    }
}

sumCounter等于17。

以防万一,这是原始的映射

{
    "mappings": {
        "metrics": {
            "properties": {
                "host": {
                    "type": "text",
                    "fielddata": true
                },
                "counter": {
                    "type": "integer"
                },
                "time": {
                    "type": "integer"
                }
            }
        }
    }
}