You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ap...@apache.org on 2020/07/27 03:58:19 UTC

[incubator-pinot] branch support-multiple-datasources-per-type updated (6310468 -> 104b1bf)

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

apucher pushed a change to branch support-multiple-datasources-per-type
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


    omit 6310468  test fix
    omit ed9ace8  unfix predicate
    omit 0caec1f  remove dependencies of PinotThirdEyeDataSource.DATA_SOURCE_NAME
    omit 02d7583  support optional 'name' field in data source config proeprties
     add dab1c2d  [Deepstore by-passing]Introduce a subclasses SplitSegmentCommitter which will proceeds to commit even if the segment upload fails. (#5700)
     add ef3e3c3  Add startReplaceSegments, endReplaceSegments controller API (#5712)
     add cb149be  [TE] Make few internal documentationi and mocks publicwq (#5743)
     add f5bb36b  [TE] Setup a rest client pipeline for comms between ThirdEye services; added RCA highlights API as an example (#5713)
     add 2af8d8e  [TE] pinot - harleyjj/detectionutils - return current when predicted baseline cannot be trained (#5736)
     add 405b4ef  [TE] Thirdeye docker log crash fix (#5749)
     add 6911172  GROOVY transform function UDF for queries (#5748)
     add 540853d  Improvements to RealtimeProvisioningHelper command (#5737)
     add dc01cc8  Fixing the case of Orc and Json record reader class name (#5754)
     add 8474f7e  Cluster Manger UI: adding instance details page showing instance config and tables in that particular instance (#5757)
     add 9f22322  Adding column name rewrite for the identifiers in the format of [table_name].[column_name] (#5734)
     add d437487  Pradeep/s3 credential chain fix (#5755)
     add 881b27d  support optional 'name' field in data source config proeprties
     add 8b44c61  remove dependencies of PinotThirdEyeDataSource.DATA_SOURCE_NAME
     add 7d2abeb  unfix predicate
     add 104b1bf  test fix

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6310468)
            \
             N -- N -- N   refs/heads/support-multiple-datasources-per-type (104b1bf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 docker/images/pinot-thirdeye/bin/start-thirdeye.sh |   4 +-
 .../pinot-thirdeye/config/ephemeral/dashboard.yml  |   4 +
 .../pinot-thirdeye/config/ephemeral/detector.yml   |   6 +-
 .../config/pinot-quickstart/dashboard.yml          |   4 +
 .../config/pinot-quickstart/detector.yml           |   6 +-
 .../docker/ingestion-job-specs/airlineStats.yaml   |   4 +-
 .../docker/ingestion-job-specs/baseballStats.yaml  |   4 +-
 docs/batch_data_ingestion.rst                      |   4 +-
 .../requesthandler/BaseBrokerRequestHandler.java   |  90 +++--
 .../routing/timeboundary/TimeBoundaryManager.java  |   2 +-
 .../common/function/TransformFunctionType.java     |   2 +-
 .../pinot/common/lineage/SegmentLineage.java       |  37 +-
 .../common/lineage/SegmentLineageAccessHelper.java |   1 +
 ...ageEntryState.java => SegmentLineageUtils.java} |  20 +-
 .../resources/StartReplaceSegmentsRequest.java     |  53 +++
 .../apache/pinot/common/utils/CommonConstants.java |   8 +
 .../pinot/common/lineage/SegmentLineageTest.java   |  28 +-
 .../PinotSegmentUploadDownloadRestletResource.java |  44 +++
 .../helix/core/PinotHelixResourceManager.java      | 163 ++++++++
 .../realtime/PinotLLCRealtimeSegmentManager.java   |   8 +-
 .../controller/util/SegmentIntervalUtils.java      |   9 +-
 pinot-controller/src/main/resources/app/App.tsx    |  58 +--
 .../main/resources/app/components/Breadcrumbs.tsx  |  22 +-
 .../app/components/Homepage/InstanceTable.tsx      |  12 +-
 .../app/components/Homepage/InstancesTables.tsx    |   8 +-
 .../src/main/resources/app/interfaces/types.d.ts   |   2 +
 .../main/resources/app/pages/InstanceDetails.tsx   | 167 ++++++++
 .../src/main/resources/app/pages/Query.tsx         |   7 +-
 .../src/main/resources/app/pages/TenantDetails.tsx |   6 +-
 .../src/main/resources/app/requests/index.ts       |   9 +-
 pinot-controller/src/main/resources/app/router.tsx |   8 +-
 .../main/resources/app/utils/PinotMethodUtils.ts   |  67 +++-
 .../helix/core/PinotHelixResourceManagerTest.java  | 143 ++++++-
 .../PinotLLCRealtimeSegmentManagerTest.java        |   3 +-
 .../helix/core/realtime/SegmentCompletionTest.java |   3 +-
 .../data/function/GroovyFunctionEvaluator.java     |  19 +-
 .../realtime/LLRealtimeSegmentDataManager.java     |  24 +-
 .../realtime/PeerSchemeSplitSegmentCommitter.java  |  48 +++
 .../manager/realtime/PinotFSSegmentUploader.java   |   2 +
 .../manager/realtime/SegmentCommitterFactory.java  |  37 +-
 .../manager/realtime/SplitSegmentCommitter.java    |  14 +-
 .../function/GroovyTransformFunction.java          | 438 +++++++++++++++++++++
 .../function/TransformFunctionFactory.java         |   2 +
 .../segment/index/loader/IndexLoadingConfig.java   |   7 +
 .../name/NormalizedDateSegmentNameGenerator.java   |   3 +-
 .../realtime/LLRealtimeSegmentDataManagerTest.java |   2 +
 .../function/GroovyTransformFunctionTest.java      | 292 ++++++++++++++
 .../tests/OfflineClusterIntegrationTest.java       |  73 +++-
 .../apache/pinot/plugin/filesystem/S3PinotFS.java  |  22 +-
 .../spi/ingestion/batch/spec/RecordReaderSpec.java |   8 +-
 .../org/apache/pinot/spi/plugin/PluginManager.java |   2 +
 .../command/RealtimeProvisioningHelperCommand.java | 100 +++--
 .../realtime/provisioning/MemoryEstimator.java     | 144 ++++---
 .../batch/airlineStats/hadoopIngestionJobSpec.yaml |   4 +-
 .../batch/airlineStats/ingestionJobSpec.yaml       |   4 +-
 .../batch/airlineStats/sparkIngestionJobSpec.yaml  |   4 +-
 .../batch/baseballStats/ingestionJobSpec.yaml      |   4 +-
 .../batch/baseballStats/sparkIngestionJobSpec.yaml |   4 +-
 thirdeye/docs/alert_setup.rst                      |   2 +-
 thirdeye/docs/detection_pipeline_architecture.rst  | 165 ++++++++
 .../docs/detection_pipeline_execution_flow.rst     | 192 +++++++++
 thirdeye/docs/index.rst                            |   2 +
 .../{alert_setup.rst => thirdeye_architecture.rst} |  13 +-
 .../{alert_setup.rst => thirdeye_ui_mocks.rst}     |  15 +-
 .../anomaly/ThirdEyeAnomalyApplication.java        |  19 +
 .../anomaly/ThirdEyeAnomalyConfiguration.java      |  10 +
 .../rca/MultiDimensionalSummaryConstants.java}     |  20 +-
 .../constants/rca/RootCauseResourceConstants.java} |  20 +-
 .../common/restclient/AbstractRestClient.java      | 166 ++++++++
 .../restclient/ParseResponseFunction.java}         |  23 +-
 .../restclient/Protocol.java}                      |  17 +-
 .../common/restclient/ThirdEyeRcaRestClient.java   | 109 +++++
 .../ThirdEyeRestClientConfiguration.java}          |  28 +-
 .../pinot/thirdeye/common/utils/SessionUtils.java  |  16 +
 .../cube/entry/MultiDimensionalSummaryCLITool.java |  45 +--
 .../dashboard/ThirdEyeDashboardApplication.java    |   2 +-
 .../dashboard/resources/SummaryResource.java       |  51 +--
 .../dashboard/resources/v2/RootCauseResource.java  |  54 ++-
 .../pinot/thirdeye/detection/DetectionUtils.java   |  16 +-
 .../alert/scheme/DetectionAlertScheme.java         |   4 +
 .../alert/scheme/DetectionEmailAlerter.java        |   2 +-
 .../alert/scheme/DetectionJiraAlerter.java         |   3 +-
 .../content/BaseNotificationContent.java           |  12 +-
 .../content/templates/EntityGroupKeyContent.java   |   2 +-
 .../templates/HierarchicalAnomaliesContent.java    |   4 +-
 .../content/templates/MetricAnomaliesContent.java  |  59 ++-
 .../common/restclient/MockAbstractRestClient.java  |  52 +++
 .../restclient/MockThirdEyeRcaRestClient.java      |  56 +++
 .../common/restclient/TestAbstractRestClient.java  |  61 +++
 .../restclient/TestThirdEyeRcaRestClient.java      |  65 +++
 .../alert/scheme/DetectionEmailAlerterTest.java    |  15 +
 .../alert/scheme/DetectionJiraAlerterTest.java     |  18 +-
 .../templates/TestMetricAnomaliesContent.java      |  12 +-
 .../channels/TestJiraContentFormatter.java         |  17 +-
 94 files changed, 3188 insertions(+), 452 deletions(-)
 copy pinot-common/src/main/java/org/apache/pinot/common/lineage/{LineageEntryState.java => SegmentLineageUtils.java} (72%)
 create mode 100644 pinot-common/src/main/java/org/apache/pinot/common/restlet/resources/StartReplaceSegmentsRequest.java
 create mode 100644 pinot-controller/src/main/resources/app/pages/InstanceDetails.tsx
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/PeerSchemeSplitSegmentCommitter.java
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/GroovyTransformFunction.java
 create mode 100644 pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/GroovyTransformFunctionTest.java
 create mode 100644 thirdeye/docs/detection_pipeline_architecture.rst
 create mode 100644 thirdeye/docs/detection_pipeline_execution_flow.rst
 copy thirdeye/docs/{alert_setup.rst => thirdeye_architecture.rst} (84%)
 copy thirdeye/docs/{alert_setup.rst => thirdeye_ui_mocks.rst} (58%)
 copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{alert/commons/AnomalyFeedFactory.java => common/constants/rca/MultiDimensionalSummaryConstants.java} (58%)
 copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{anomaly/alert/grouping/BaseAlertGrouper.java => common/constants/rca/RootCauseResourceConstants.java} (64%)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/common/restclient/AbstractRestClient.java
 copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{cube/data/dbclient/CubeTag.java => common/restclient/ParseResponseFunction.java} (65%)
 copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{dashboard/views/ThirdEyeAdminView.java => common/restclient/Protocol.java} (77%)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/common/restclient/ThirdEyeRcaRestClient.java
 copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{datalayer/entity/SessionIndex.java => common/restclient/ThirdEyeRestClientConfiguration.java} (60%)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/common/utils/SessionUtils.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/common/restclient/MockAbstractRestClient.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/common/restclient/MockThirdEyeRcaRestClient.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/common/restclient/TestAbstractRestClient.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/common/restclient/TestThirdEyeRcaRestClient.java


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