You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by je...@apache.org on 2019/04/01 18:58:09 UTC

[incubator-pinot] branch orcdoc updated (e59ea57 -> d021ad3)

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

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


 discard e59ea57  Add ORC docs
     new dac8eca  [TE]  predicted baseline endpoint fix (#4005)
     new 4b31ff6  [TE] frontend - harleyjj/yaml-editor - increases toast timeout from 4 seconds to 10 seconds (#4004)
     new d4f2ece  Set processingException when all queried segments cannot be acquired (#3942)
     new ea2d621  Added documentation regarding design docs (#4002)
     new c9fbd6a  Add controller mode logic in ControllerStarter (#3864)
     new f636f97  [TE] Update pinot version to 0.2.0-SNAPSHOT (#4008)
     new d58f8bc  [TE] Fix ArrayIndexOutOfBoundsException; Wrap replay endpoint and ret… (#4003)
     new a0011df  Added a percent threshold to consider startup of services (#4011)
     new ccb8d58  [TE] Set anomaly duration upper limit to 7 days (#4015)
     new 1870c36  [TE] detection - current & baseline provider lazy evaluation (#4014)
     new 1248705  [TE] frontend - harleyjj/yaml-editor - set subscription group by default in edit mode (#4016)
     new a4a3571  Add docs for record reader (#4010)
     new d000501  [TE] Fix alert owner; use consistent filter convention (#4017)
     new 55f68ce  Adding ORC Multi-value Column Support (#4009)
     new 46e593d  Update contribution guidelines (#4012)
     new 632f48b  [TE] detection -  zero divide fix (#4018)
     new 5618e3f  [TE] Clean up the email template (#4019)
     new aefbada  [TE] add exceptions for detector API (#4021)
     new e4bb117  ReadTheDocs documentation for Table Configs, Monitoring, and Deployment (#3975)
     new b0fd3a3  [TE] frontend - harleyjj/format-yaml-filter - move formatYamlFilter to utils and correct check for Array (#4024)
     new 248d284  Updated architecture docs page with corrections (#4020)
     new 8d9bf8c  [TE] udpate the detector exceptions (#4023)
     new 86fe034  [TE] detection - configure cache look back from yaml (#4028)
     new 3cd2082  [TE] set max detection task window to 7 days (#4030)
     new 334b918  Fail pipeline all windows failed (#4032)
     new 35f058c  [TE] Reduce log for data insufficient exception. (#4026)
     new 823c801  [TE] do not automatically onboard millisecond level dataset (#4033)
     new 6c71c24  [TE] filter out anomalies in the future (#4038)
     new e032ebf  Add more logs to ServiceStatus (#4037)
     new 046578f  [TE] Add early terminate in detection loop (#4042)
     new 55839b4  [TE] frontend - harleyjj/alert-overview - handle infinity value in anomalies (#4043)
     new d021ad3  Adding ORC configuration in docs

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   (e59ea57)
            \
             N -- N -- N   refs/heads/orcdoc (d021ad3)

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.

The 5901 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/admin_guide.rst                               |   1 +
 docs/architecture.rst                              |   8 +-
 docs/code_modules.rst                              |   5 +-
 docs/contribution_guidelines.rst                   |  90 +++++---
 docs/extensions.rst                                |   2 +-
 docs/in_production.rst                             | 122 +++++++++--
 docs/pinot_hadoop.rst                              |   3 +-
 docs/pluggable_record_reader.rst                   |  46 ----
 docs/record_reader.rst                             | 115 ++++++++++
 docs/tableconfig_schema.rst                        | 209 ++++++++++++++++++
 .../broker/broker/helix/HelixBrokerStarter.java    |   6 +-
 .../broker/broker/HelixBrokerStarterTest.java      |  76 +++----
 .../pinot/common/exception/QueryException.java     |   2 +
 .../apache/pinot/common/utils/CommonConstants.java |  11 +
 .../apache/pinot/common/utils/ServiceStatus.java   | 206 +++++++++++++-----
 .../pinot/common/utils/ServiceStatusTest.java      | 135 +++++++++++-
 .../apache/pinot/controller/ControllerConf.java    |  17 ++
 .../controller/ControllerLeadershipManager.java    |   2 +
 .../apache/pinot/controller/ControllerStarter.java | 205 ++++++++++++++----
 .../helix/core/PinotHelixResourceManager.java      |  32 ++-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |   3 +
 .../core/realtime/SegmentCompletionManager.java    |   5 +
 .../rebalance/RebalanceSegmentStrategyFactory.java |   5 +
 .../PinotInstanceRestletResourceTest.java          |  20 +-
 .../controller/api/resources/TableViewsTest.java   |   2 +
 .../helix/ControllerPeriodicTaskStarterTest.java   |   8 +-
 .../pinot/controller/helix/ControllerTest.java     |  40 +++-
 .../controller/helix/PinotControllerModeTest.java  | 115 ++++++++++
 .../controller/helix/PinotResourceManagerTest.java |  56 ++---
 .../sharding/SegmentAssignmentStrategyTest.java    |  88 ++++----
 .../validation/ValidationManagerTest.java          |  57 ++---
 .../core/data/manager/BaseTableDataManager.java    |  48 ++++-
 .../core/data/manager/InstanceDataManager.java     |  14 ++
 .../pinot/core/data/manager/TableDataManager.java  |  15 ++
 .../query/executor/ServerQueryExecutorV1Impl.java  |  33 ++-
 .../data/manager/BaseTableDataManagerTest.java     |   5 +
 .../pinot/query/executor/QueryExecutorTest.java    |  50 ++++-
 ...vertToRawIndexMinionClusterIntegrationTest.java |   4 +-
 .../tests/OfflineClusterIntegrationTest.java       |   9 +-
 .../pinot/orc/data/readers/ORCRecordReader.java    |  26 ++-
 .../orc/data/readers/ORCRecordReaderTest.java      |  62 +++++-
 .../starter/helix/HelixInstanceDataManager.java    |  16 ++
 .../server/starter/helix/HelixServerStarter.java   |   6 +-
 .../SegmentOnlineOfflineStateModelFactory.java     |   5 +
 .../admin/command/StartControllerCommand.java      |   7 +-
 thirdeye/run-frontend.sh                           |   2 +-
 .../app/pods/components/alert-details/component.js |  10 +-
 .../self-serve-alert-details/template.hbs          |   6 +-
 .../self-serve-alert-yaml-details/template.hbs     |   2 +-
 .../app/pods/components/yaml-editor/component.js   |  43 ++--
 .../app/pods/manage/alerts/index/route.js          |  41 ++--
 .../app/pods/manage/explore/route.js               |  61 +++---
 .../app/pods/manage/yaml/route.js                  |  48 +----
 thirdeye/thirdeye-frontend/app/utils/constants.js  |  18 +-
 thirdeye/thirdeye-frontend/app/utils/utils.js      |  37 +++-
 .../acceptance/self-serve-alert-tuning-test.js     |   6 +-
 .../self-serve-alert-details/component-test.js     |   2 +-
 .../pods/components/yaml-editor/component-test.js  | 121 +++++++++++
 thirdeye/thirdeye-pinot/config/h2db.mv.db          | Bin 0 -> 2330624 bytes
 .../MultipleAnomaliesEmailContentFormatter.java    |   4 +-
 .../anomaly/alert/util/AnomalyReportGenerator.java |   4 +-
 .../api/user/dashboard/UserDashboardResource.java  |  15 +-
 .../onboard/AutoOnboardPinotMetadataSource.java    |  34 +--
 .../thirdeye/auto/onboard/ConfigGenerator.java     |   4 +-
 .../bao/jdbc/MergedAnomalyResultManagerImpl.java   |   6 +-
 .../thirdeye/detection/DefaultDataProvider.java    |  14 +-
 .../thirdeye/detection/DetectionPipelineJob.java   |  54 +++--
 .../thirdeye/detection/DetectionResource.java      | 138 ++++++------
 .../detection/alert/DetectionAlertTaskRunner.java  |   6 -
 .../thirdeye/detection/algorithm/MergeWrapper.java |  40 ++--
 .../PercentageChangeRuleAnomalyFilter.java         |  24 ++-
 .../components/PercentageChangeRuleDetector.java   |   8 +-
 .../detection/spi/components/AnomalyDetector.java  |   4 +-
 .../DetectorDataInsufficientException.java         |  27 ++-
 .../DetectorDataWrongFormatException.java          |  25 ++-
 .../detection/spi/exception/DetectorException.java |  24 ++-
 .../detection/wrapper/AnomalyDetectorWrapper.java  |  83 +++++--
 .../wrapper/BaselineFillingMergeWrapper.java       |  32 ++-
 .../wrapper/ChildKeepingMergeWrapper.java          |  24 ++-
 .../yaml/CompositePipelineConfigTranslator.java    |   8 +-
 .../yaml/YamlDetectionConfigTranslator.java        |   1 +
 .../thirdeye/detector/holiday-anomaly-report.ftl   | 239 ++++++++++-----------
 .../detector/multiple-anomalies-email-template.ftl | 168 ---------------
 .../onboard-notification-email-template.ftl        |   5 +-
 .../detector/single-anomaly-email-template.ftl     |  90 --------
 .../resource/v2/UserDashboardResourceTest.java     |  14 +-
 .../detection/components/MockBaselineProvider.java |   3 +-
 .../PercentageChangeRuleDetectorTest.java          |   7 +-
 .../components/RuleBaselineProviderTest.java       |   2 +-
 .../components/ThresholdRuleDetectorTest.java      |   7 +-
 .../detection/spec/MockBaselineProviderSpec.java   |  10 +-
 .../wrapper/BaselineFillingMergeWrapperTest.java   |  85 ++++++--
 .../wrapper/ChildKeepingMergeWrapperTest.java      |  38 ++++
 ...multiple-anomalies-email-content-formatter.html |  25 ++-
 ...board-notification-email-content-formatter.html |   5 +-
 95 files changed, 2456 insertions(+), 1210 deletions(-)
 delete mode 100644 docs/pluggable_record_reader.rst
 create mode 100644 docs/record_reader.rst
 create mode 100644 docs/tableconfig_schema.rst
 create mode 100644 pinot-controller/src/test/java/org/apache/pinot/controller/helix/PinotControllerModeTest.java
 create mode 100644 thirdeye/thirdeye-frontend/tests/integration/pods/components/yaml-editor/component-test.js
 create mode 100644 thirdeye/thirdeye-pinot/config/h2db.mv.db
 copy pinot-api/src/main/java/org/apache/pinot/client/PinotClientException.java => thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/spi/exception/DetectorDataInsufficientException.java (61%)
 copy pinot-core/src/main/java/org/apache/pinot/core/query/exception/BadQueryRequestException.java => thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/spi/exception/DetectorDataWrongFormatException.java (64%)
 copy pinot-api/src/main/java/org/apache/pinot/client/PinotClientException.java => thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/spi/exception/DetectorException.java (71%)
 delete mode 100644 thirdeye/thirdeye-pinot/src/main/resources/org/apache/pinot/thirdeye/detector/multiple-anomalies-email-template.ftl
 delete mode 100644 thirdeye/thirdeye-pinot/src/main/resources/org/apache/pinot/thirdeye/detector/single-anomaly-email-template.ftl


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