This is an automated email from the ASF dual-hosted git repository.
jlli pushed a change to branch create-lead-controller-resource
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard 747e2ce Create leadControllerResource in Helix cluster
new d60f445 [TE] add threshold for dimension explore (#4166)
new a023aa2 [TE] frontend - harleyjj/share-dashboard - small bug in share
button for subscription group (#4162)
new b7b6ba3 [TE] frontend - harleyjj/anomalies - enable anomalyIds param
for email linking to new anomalies route (#4164)
new 9b73770 [TE] Dynamically change H2 demo database timestamps (#4157)
new 1e1277d [TE] Migrating documentation to readthedocs.io (#4146)
new 71a63c8 Update Audience and Stability annotations for basic classes
(#4169)
new 7d695d8 Make realtime server upload timeout configurable (#4170)
new 3f9a2cb [TE] Show more debug information in preview (#4167)
new 971c9ad Reduce ZK access (#4173)
new 30f3f0d [TE] allow empty urn for baseline (#4177)
new 3c97209 [TE] frontend - harleyjj/anomalies - link new anomalies route
in Thirdeye header (#4174)
new 352dd5e Create leadControllerResource in Helix cluster
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 (747e2ce)
\
N -- N -- N refs/heads/create-lead-controller-resource (352dd5e)
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 6010 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:
.../org/apache/pinot/broker/api/AccessControl.java | 4 +
.../apache/pinot/common/utils/CommonConstants.java | 12 +-
.../java/org/apache/pinot/filesystem/PinotFS.java | 4 +
.../pinot/controller/api/access/AccessControl.java | 4 +
.../api/access/AccessControlFactory.java | 6 +
.../resources/LLCSegmentCompletionHandlers.java | 14 +-
.../helix/core/SegmentDeletionManager.java | 10 +-
.../controller/helix/core/TableRebalancer.java | 22 +-
.../core/realtime/SegmentCompletionManager.java | 4 +-
.../ServerSegmentCompletionProtocolHandler.java | 16 +-
.../server/starter/helix/HelixServerStarter.java | 4 +-
.../apache/pinot/tools/PinotSegmentRebalancer.java | 6 +-
thirdeye/.gitignore | 1 +
thirdeye/README.md | 149 +-----
thirdeye/docs/Makefile | 19 +
{docs => thirdeye/docs}/README.md | 0
thirdeye/docs/advanced_config.rst | 392 ++++++++++++++++
.../docs/alert_setup.rst | 15 +-
thirdeye/docs/appendix.rst | 503 +++++++++++++++++++++
thirdeye/docs/basic_config.rst | 369 +++++++++++++++
thirdeye/docs/conf.py | 176 +++++++
thirdeye/docs/contribute_datasource.rst | 52 +++
thirdeye/docs/contribute_detection.rst | 49 ++
.../docs/datasources.rst | 15 +-
thirdeye/docs/import_sql_metric.rst | 59 +++
docs/user_guide.rst => thirdeye/docs/index.rst | 17 +-
thirdeye/docs/intro.rst | 54 +++
{docs => thirdeye/docs}/introduction.rst | 6 +-
thirdeye/docs/make.bat | 35 ++
thirdeye/docs/mysql.rst | 72 +++
thirdeye/docs/pinot.rst | 84 ++++
thirdeye/docs/presto.rst | 70 +++
thirdeye/docs/production.rst | 27 ++
thirdeye/docs/quick_start.rst | 109 +++++
thirdeye/docs/templates.rst | 197 ++++++++
thirdeye/run-backend.sh | 2 +-
.../app/pods/anomalies/controller.js | 121 +++--
.../thirdeye-frontend/app/pods/anomalies/route.js | 69 ++-
.../app/pods/application/controller.js | 5 +-
.../pods/components/anomaly-summary/component.js | 8 +-
.../pods/components/anomaly-summary/template.hbs | 1 +
.../app/pods/home/index/template.hbs | 2 +-
thirdeye/thirdeye-frontend/app/utils/anomaly.js | 24 +-
.../thirdeye-frontend/app/utils/api/anomaly.js | 20 +-
.../config/data-sources/data-sources-config.yml | 2 +
.../pinot/resultset/ThirdEyeResultSetUtils.java | 2 +-
.../datasource/sql/SqlResponseCacheLoader.java | 40 +-
.../pinot/thirdeye/datasource/sql/SqlUtils.java | 5 +-
.../detection/algorithm/DimensionWrapper.java | 47 +-
.../DetectorDataInsufficientException.java | 2 +-
.../detection/wrapper/AnomalyDetectorWrapper.java | 11 +-
.../thirdeye/detection/yaml/YamlResource.java | 79 ++--
52 files changed, 2647 insertions(+), 369 deletions(-)
create mode 100644 thirdeye/docs/Makefile
copy {docs => thirdeye/docs}/README.md (100%)
create mode 100644 thirdeye/docs/advanced_config.rst
copy docs/introduction.rst => thirdeye/docs/alert_setup.rst (87%)
create mode 100644 thirdeye/docs/appendix.rst
create mode 100644 thirdeye/docs/basic_config.rst
create mode 100644 thirdeye/docs/conf.py
create mode 100644 thirdeye/docs/contribute_datasource.rst
create mode 100644 thirdeye/docs/contribute_detection.rst
copy docs/introduction.rst => thirdeye/docs/datasources.rst (87%)
create mode 100644 thirdeye/docs/import_sql_metric.rst
copy docs/user_guide.rst => thirdeye/docs/index.rst (88%)
create mode 100644 thirdeye/docs/intro.rst
copy {docs => thirdeye/docs}/introduction.rst (92%)
create mode 100644 thirdeye/docs/make.bat
create mode 100644 thirdeye/docs/mysql.rst
create mode 100644 thirdeye/docs/pinot.rst
create mode 100644 thirdeye/docs/presto.rst
create mode 100644 thirdeye/docs/production.rst
create mode 100644 thirdeye/docs/quick_start.rst
create mode 100644 thirdeye/docs/templates.rst
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]