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/03/14 03:04:09 UTC

[incubator-pinot] branch remotefiles updated (c0ca7de -> c88ca37)

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

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


 discard c0ca7de  Adding abilitiy to set input file path to remote path
     new 581a04a  [TE] harleyjj/preview - make default time range 1 day for preview (#3931)
     new 2b3639c  Turn off echo in shell commands (#3930)
     new bf63bd4  Set controller.enable.batch.message.mode to false by default (#3928)
     new 70f2f85  Add doc for Customizing Pinot (#3927)
     new d684d5e  Adding the support for sampling logs (#3913)
     new 57368dd  [TE] backend - add an API to clear cache for DefaultDataProvider (#3936)
     new 796c04a  [TE] yaml - configure moving window detection in yaml (#3938)
     new 5d7612d  [TE] detection - hide child anomalies in anomalies endpoint (#3940)
     new 244a5b5  Editing pluggable storage docs (#3932)
     new 0c3519b  Provide links for high level sections (#3939)
     new 9786d50  [TE] frontend - harleyjj/alert-details - fix timeseries fetch (#3921)
     new d3e031a  Update the service status string to reflect the waiting condition (#3944)
     new f697214  [TE] Update watermarks when detectionNames are updated in subscription groups (#3945)
     new ca0b106  Set caching look back for different time granularities (#3947)
     new bf161ec  readthedocs: Update instructions for using fork (#3937)
     new 994dc85  [TE] Fix and include comma separated subscription groups in alert headers (#3950)
     new 1d02839  Adding flexible file paths (#3943)
     new f8036b3  [TE] detection - default merger gap (#3953)
     new 8cadaec  [TE] Anomaly detection for monthly data (#3949)
     new f9a2740  [TE] frontend - harleyjj/alert-details - surface message from 500 response to user in alert preview (#3954)
     new acc123c  Preview description text (#3948)
     new e8beb64  [TE] frontend - harleyjj/manage-alert-explore - pin redirect link to manage/alert/explore route (#3955)
     new 70b3b06  [TE] pinot - harleyjj/email-content - update view/edit link to explore (#3956)
     new a36105f  Redirect modal (#3961)
     new 9e37800  Improving docs on index techniques under tuning pinot section. (#3964)
     new dfb35e8  Fixed #3960 Update README.md to fix Quick Demo link broken. (#3962)
     new 098cdc9  [TE] detection - percentage change zero divide fix (#3958)
     new 92a5b40  [TE] frontend - harleyjj/rca - update predicted baseline endpoint and response handling (#3959)
     new 2a70bb9  Pinot controller side change to enhance LLC segment metadata upload. (#3877)
     new b4b457b  [TE] detection - merger max duration validation (#3966)
     new 3656ed6  [TE] Yaml validator for maxDuration (#3967)
     new 9ec6b5b  [TE] frontend - harleyjj/manage-alerts - remove old alerts from results and display type correctly (#3968)
     new c88ca37  Adding abilitiy to set input file path to remote path

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   (c0ca7de)
            \
             N -- N -- N   refs/heads/remotefiles (c88ca37)

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 5839 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:
 README.md                                          |   6 +-
 docs/admin_guide.rst                               |   6 +
 docs/conf.py                                       |   4 +-
 docs/contribution_guidelines.rst                   |  22 +-
 docs/customizations.rst                            | 152 ++++++++-
 docs/dev_env.rst                                   |  13 +-
 docs/dev_guide.rst                                 |   6 +
 docs/getting_started.rst                           |   2 +
 docs/img/CustomizingPinot.png                      | Bin 0 -> 421572 bytes
 docs/img/dictionary.png                            | Bin 0 -> 80599 bytes
 docs/img/no-dictionary.png                         | Bin 0 -> 111237 bytes
 docs/img/sorted-forward.png                        | Bin 0 -> 70022 bytes
 docs/img/sorted-inverted.png                       | Bin 0 -> 89473 bytes
 docs/index.rst                                     |  20 +-
 docs/index_techniques.rst                          | 109 +++++-
 docs/{user_guide.rst => introduction.rst}          |  14 +-
 docs/pinot_hadoop.rst                              |   2 +
 docs/pluggable_storage.rst                         |  33 +-
 docs/pluggable_streams.rst                         |   2 +
 docs/tuning_pinot.rst                              |   2 +
 docs/user_guide.rst                                |   6 +
 .../requesthandler/BaseBrokerRequestHandler.java   |  80 ++++-
 .../broker/broker/HelixBrokerStarterTest.java      |   2 +-
 .../protocols/SegmentCompletionProtocol.java       |   1 +
 .../apache/pinot/common/utils/CommonConstants.java |   2 +
 .../apache/pinot/common/utils/ServiceStatus.java   |  20 +-
 .../apache/pinot/controller/ControllerConf.java    |   2 +-
 .../resources/LLCSegmentCompletionHandlers.java    | 364 ++++++++++++++++-----
 .../helix/core/PinotHelixResourceManager.java      |   2 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |  69 +---
 .../core/realtime/SegmentCompletionManager.java    |  13 +-
 .../segment/CommittingSegmentDescriptor.java       |  18 +
 .../controller/helix/PinotResourceManagerTest.java |   2 +-
 .../PinotLLCRealtimeSegmentManagerTest.java        |  61 ++--
 .../helix/core/realtime/SegmentCompletionTest.java |  30 +-
 .../sharding/SegmentAssignmentStrategyTest.java    |   2 +-
 .../validation/ValidationManagerTest.java          |   2 +-
 .../core/query/scheduler/PriorityScheduler.java    |   8 +-
 .../pinot/core/query/scheduler/QueryScheduler.java |  72 +++-
 .../query/scheduler/fcfs/BoundedFCFSScheduler.java |   9 +-
 .../query/scheduler/fcfs/FCFSQueryScheduler.java   |   2 +-
 .../tokenbucket/TokenPriorityScheduler.java        |   8 +-
 .../query/scheduler/PrioritySchedulerTest.java     |  14 +-
 .../pinot/hadoop/job/SegmentCreationJob.java       |   4 +
 .../request/ScheduledRequestHandlerTest.java       |  10 +-
 .../src/main/resources/appAssemblerScriptTemplate  |   4 +-
 .../app/mirage/endpoints/selfserve.js              |  17 +-
 .../app/mirage/factories/alert.js                  |  60 ++--
 .../app/pods/components/alert-details/component.js |  25 +-
 .../app/pods/components/alert-details/template.hbs |   3 +-
 .../self-serve-alert-details/template.hbs          |  12 +-
 .../self-serve-alert-yaml-details/template.hbs     |  20 +-
 .../app/pods/components/te-modal/template.hbs      |  14 +-
 .../custom/anomalies-table/dimensions/template.hbs |   2 +-
 .../app/pods/manage/alert/explore/controller.js    |  21 +-
 .../app/pods/manage/alert/explore/route.js         |   9 +-
 .../app/pods/manage/alert/explore/template.hbs     |  23 ++
 .../app/pods/manage/alerts/index/route.js          |  49 ++-
 .../manage/{explore-new => explore}/controller.js  |   0
 .../pods/manage/{explore-new => explore}/route.js  |  44 ++-
 .../manage/{explore-new => explore}/template.hbs   |   1 +
 .../app/pods/manage/yaml/template.hbs              |   2 +-
 .../app/pods/rootcause/controller.js               |   6 +-
 .../thirdeye-frontend/app/pods/rootcause/route.js  |   6 +-
 .../rootcause-anomalyfunction-cache/service.js     |  22 +-
 thirdeye/thirdeye-frontend/app/router.js           |   2 +-
 .../app/styles/components/alert-report-modal.scss  |   6 +
 thirdeye/thirdeye-frontend/app/utils/rca-utils.js  |  13 +-
 thirdeye/thirdeye-frontend/app/utils/utils.js      |   8 +
 .../tests/acceptance/edit-alert-test.js            |  39 ---
 .../acceptance/self-serve-alert-tuning-test.js     |  32 +-
 .../api/user/dashboard/UserDashboardResource.java  |   4 +-
 .../thirdeye/detection/DefaultDataProvider.java    |   7 +
 .../thirdeye/detection/DetectionResource.java      |   2 +-
 .../pinot/thirdeye/detection/DetectionUtils.java   |  23 +-
 .../thirdeye/detection/algorithm/MergeWrapper.java |  10 +-
 .../components/AbsoluteChangeRuleDetector.java     |  18 +-
 .../components/PercentageChangeRuleDetector.java   |  51 +--
 .../components/ThresholdRuleDetector.java          |  20 +-
 .../spec/AbsoluteChangeRuleDetectorSpec.java       |  12 +
 .../spec/PercentageChangeRuleDetectorSpec.java     |  12 +
 .../detection/spec/ThresholdRuleDetectorSpec.java  |  10 +
 .../detection/wrapper/AnomalyDetectorWrapper.java  |  29 +-
 .../yaml/CompositePipelineConfigTranslator.java    |  11 +
 .../thirdeye/detection/yaml/YamlResource.java      |  18 +
 .../thirdeye/detector/holiday-anomaly-report.ftl   |   2 +-
 .../detection/algorithm/MergeWrapperTest.java      |   1 +
 .../PercentageChangeRuleDetectorTest.java          |  40 ++-
 .../components/ThresholdRuleDetectorTest.java      |  28 ++
 .../wrapper/ChildKeepingMergeWrapperTest.java      |   2 +
 .../thirdeye/detection/yaml/YamlResourceTest.java  |  54 +--
 .../{alert-config-4.yaml => alert-config-5.yaml}   |   2 +-
 ...multiple-anomalies-email-content-formatter.html |   2 +-
 93 files changed, 1436 insertions(+), 558 deletions(-)
 create mode 100644 docs/img/CustomizingPinot.png
 create mode 100644 docs/img/dictionary.png
 create mode 100644 docs/img/no-dictionary.png
 create mode 100644 docs/img/sorted-forward.png
 create mode 100644 docs/img/sorted-inverted.png
 copy docs/{user_guide.rst => introduction.rst} (87%)
 rename thirdeye/thirdeye-frontend/app/pods/manage/{explore-new => explore}/controller.js (100%)
 rename thirdeye/thirdeye-frontend/app/pods/manage/{explore-new => explore}/route.js (74%)
 rename thirdeye/thirdeye-frontend/app/pods/manage/{explore-new => explore}/template.hbs (96%)
 delete mode 100644 thirdeye/thirdeye-frontend/tests/acceptance/edit-alert-test.js
 copy thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/detection/yaml/alertconfig/{alert-config-4.yaml => alert-config-5.yaml} (93%)


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