You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ji...@apache.org on 2019/03/21 01:48:12 UTC

[incubator-pinot] branch master updated: [TE] Aggregation function and double series aggregation mapping (#3999)

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 <ji...@linkedin.com>
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: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org