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 2020/08/11 18:42:35 UTC

[incubator-pinot] branch master updated (9551062 -> b268012)

This is an automated email from the ASF dual-hosted git repository.

jihao pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


    from 9551062  update Swagger (OpenAPI) configuration for HTTP+HTTPS (#5817)
     add b268012  [TE] add anomaly detection as a service - Phase 1 (#5769)

No new revisions were added by this update.

Summary of changes:
 .../anomaly/ThirdEyeAnomalyApplication.java        |   8 +-
 .../anomaly/ThirdEyeAnomalyConfiguration.java      |   9 +
 .../pinot/thirdeye/anomaly/task/TaskConstants.java |   3 +-
 .../pinot/thirdeye/anomaly/task/TaskDriver.java    |  20 +-
 .../thirdeye/anomaly/task/TaskInfoFactory.java     |   5 +-
 .../thirdeye/anomaly/task/TaskRunnerFactory.java   |   3 +
 .../anomaly/utils/ThirdeyeMetricsUtil.java         |   6 +
 .../api/detection/AnomalyDetectionResource.java    | 746 +++++++++++++++++++++
 .../api/user/dashboard/UserDashboardResource.java  |   2 +-
 .../dashboard/ThirdEyeDashboardApplication.java    |   4 +-
 .../pinot/thirdeye/datalayer/bao/TaskManager.java  |   8 +
 .../datalayer/bao/jdbc/TaskManagerImpl.java        |  37 +
 .../thirdeye/datalayer/pojo/MetricConfigBean.java  |  10 +
 .../online/OnlineThirdEyeDataSource.java           | 199 ++++++
 .../pinot/resultset/ThirdEyeResultSetUtils.java    |   1 +
 .../detection/DetectionPipelineTaskInfo.java       |  20 +-
 .../detection/DetectionPipelineTaskRunner.java     |  25 +-
 .../main/resources/detection-config-template.yml   |  24 +
 .../detection/AnomalyDetectionResourceTest.java    | 232 +++++++
 .../thirdeye/api/detection/payload-bad-custom.json |   4 +
 .../pinot/thirdeye/api/detection/payload-bad.json  |   3 +
 .../api/detection/payload-good-custom.json         |   4 +
 .../pinot/thirdeye/api/detection/payload-good.json |   4 +
 23 files changed, 1363 insertions(+), 14 deletions(-)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/api/detection/AnomalyDetectionResource.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datasource/online/OnlineThirdEyeDataSource.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/resources/detection-config-template.yml
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/api/detection/AnomalyDetectionResourceTest.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/api/detection/payload-bad-custom.json
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/api/detection/payload-bad.json
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/api/detection/payload-good-custom.json
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/api/detection/payload-good.json


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org