This is an automated email from the ASF dual-hosted git repository.
jihao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/master by this push:
new d78160d [TE] Aggregation function and double series aggregation
mapping (#3999)
d78160d is described below
commit d78160dd855430ab1f03f00ac70029cb960196ae
Author: Jihao Zhang <[email protected]>
AuthorDate: Wed Mar 20 18:48:05 2019 -0700
[TE] Aggregation function and double series aggregation mapping (#3999)
---
.../pinot/thirdeye/rootcause/timeseries/BaselineAggregateType.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/rootcause/timeseries/BaselineAggregateType.java
b/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/rootcause/timeseries/BaselineAggregateType.java
index 33eb37e..ce31112 100644
---
a/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/rootcause/timeseries/BaselineAggregateType.java
+++
b/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/rootcause/timeseries/BaselineAggregateType.java
@@ -32,6 +32,8 @@ public enum BaselineAggregateType {
SUM(DoubleSeries.SUM),
PRODUCT(DoubleSeries.PRODUCT),
MEAN(DoubleSeries.MEAN),
+ AVG(DoubleSeries.MEAN),
+ COUNT(DoubleSeries.SUM),
MEDIAN(DoubleSeries.MEDIAN),
MIN(DoubleSeries.MIN),
MAX(DoubleSeries.MAX),
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]