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 2021/01/21 19:16:18 UTC

[incubator-pinot] branch pinot-internode-tls updated (29e999e -> 80f62e9)

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

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


 discard 29e999e  use global tls config only
 discard 72db488  cover even more controller-bases with TLS
 discard 2dd106f  test fixes round 1
 discard 03612ad  review fixes round 2
 discard 73e13eb  test fixes round 3
 discard 0a68db3  test fixes round 2
 discard 47a214c  test fixes round 1
 discard 55c8efb  dynamic tls upgrade for netty
 discard fc9f327  multi-ingress support
 discard 6b83ddb  review fixes subbu 1
 discard 5a9203e  add protocol param to admin commands
 discard 2caab57  support TLS defaults and overrides
 discard dfbd95a  license headers
 discard 82cef1b  strings to constants
 discard 0a133ab  unified client and internode TLS
 discard 77d95a3  more assertions
 discard abc0d16  exception on unsupported broker client protocol
 discard bac66ed  review fixes jackie
 discard 26f1db8  client-broker TLS support
     add ec29b82  additional scalar functions for array type (#6446)
     add 5de1d4b  Fixing pinot helm 0.2.3 package (#6459)
     add b592c8c  Adding CRON scheduler for Pinot tasks (#6451)
     add 60c802c  Fixing pinot hadoop fs isDirectory method (#6461)
     add 174a77b  [TE]frontend - Add support for feedback propagation for Entity Monitoring (#6447)
     add 079f27a  Cleanup dictionary and forward index loading in SegmentPreProcessor (#6455)
     add a36d1c0  [TE] Feedback propagation (#6463)
     add a56f330  Broker time segment pruner(#6189): (#6462)
     add 0417e20  additional string scalar functions (#6458)
     add 79c9460  Dimension table storage quota config and validation (#6465)
     add 2e7cdcd  Always store raw table name in segment metadata (#6457)
     add a06a308  client-broker TLS support
     add 2a47323  review fixes jackie
     add c45ccb5  exception on unsupported broker client protocol
     add ff880a7  more assertions
     add f8bab95  unified client and internode TLS
     add ac8a99b  strings to constants
     add d76b04c  license headers
     add ed2672b  support TLS defaults and overrides
     add 8afadd2  add protocol param to admin commands
     add 46d7039  review fixes subbu 1
     add 46c6bce  multi-ingress support
     add 404c52e  dynamic tls upgrade for netty
     add 4883cfb  test fixes round 1
     add eb7383c  test fixes round 2
     add b4fc2f7  test fixes round 3
     add e828343  review fixes round 2
     add 52f646b  test fixes round 1
     add 30ba7d1  cover even more controller-bases with TLS
     add 80f62e9  use global tls config only

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   (29e999e)
            \
             N -- N -- N   refs/heads/pinot-internode-tls (80f62e9)

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:
 kubernetes/helm/index.yaml                         |  14 +-
 kubernetes/helm/pinot-0.2.3.tgz                    | Bin 24307 -> 24664 bytes
 .../routing/segmentpruner/TimeSegmentPruner.java   |  12 +-
 .../routing/segmentpruner/SegmentPrunerTest.java   |  68 ++++-
 pinot-common/pom.xml                               |   4 +
 .../common/function/scalar/ArrayFunctions.java     |  59 ++++
 .../common/function/scalar/StringFunctions.java    | 127 ++++++++-
 .../common/metadata/segment/SegmentZKMetadata.java |  21 +-
 pinot-controller/pom.xml                           |   4 +
 .../apache/pinot/controller/ControllerConf.java    |  15 ++
 .../PinotSegmentUploadDownloadRestletResource.java |   2 +-
 .../api/resources/PinotTableRestletResource.java   |  57 ++++
 .../api/resources/PinotTaskRestletResource.java    | 111 ++++++++
 .../helix/core/minion/CronJobScheduleJob.java      |  54 ++++
 .../helix/core/minion/PinotTaskManager.java        | 264 +++++++++++++++++-
 .../core/minion/TableTaskSchedulerUpdater.java     |  57 ++++
 .../SegmentGenerationAndPushTaskGenerator.java     |  49 +++-
 .../core/realtime/PinotRealtimeSegmentManager.java |  10 +-
 .../pinot/controller/ControllerTestUtils.java      |  15 +-
 .../api/PinotTableRestletResourceTest.java         |  93 +++++++
 .../helix/core/minion/PinotTaskManagerTest.java    | 145 ++++++++++
 pinot-core/pom.xml                                 |   4 -
 .../generator/SegmentGeneratorConfig.java          |  10 +-
 .../core/segment/index/loader/LoaderUtils.java     |  47 ++++
 .../index/loader/invertedindex/H3IndexHandler.java |  34 +--
 .../loader/invertedindex/InvertedIndexHandler.java |  19 +-
 .../loader/invertedindex/JsonIndexHandler.java     |  24 +-
 .../invertedindex/LuceneFSTIndexHandler.java       |  23 +-
 .../loader/invertedindex/RangeIndexHandler.java    |  30 +--
 .../loader/invertedindex/TextIndexHandler.java     |  47 +---
 .../segment/index/metadata/SegmentMetadata.java    |   4 +
 .../index/metadata/SegmentMetadataImpl.java        |  49 ++--
 .../core/data/function/InbuiltFunctionsTest.java   |  34 +++
 .../ScalarTransformFunctionWrapperTest.java        | 297 ++++++++++++++++++++-
 .../tests/ClusterIntegrationTestUtils.java         |  55 ++--
 .../apache/pinot/hadoop/io/PinotOutputFormat.java  |   3 +-
 .../apache/pinot/plugin/filesystem/GcsPinotFS.java |   4 +-
 .../pinot/plugin/filesystem/HadoopPinotFS.java     |  13 +-
 pinot-server/pom.xml                               |   4 -
 .../pinot/server/api/TablesResourceTest.java       |  14 +-
 .../converter/DictionaryToRawIndexConverter.java   |   4 +-
 pom.xml                                            |   6 +
 .../dashboard/resources/AnomalyResource.java       |  44 ++-
 .../bao/TestMergedAnomalyResultManager.java        |  19 ++
 .../components/composite-anomalies/component.js    |  14 +-
 .../entity-metrics-anomalies/component.js          |   3 +-
 .../entity-metrics-anomalies/template.hbs          |   2 +-
 .../group-constituents-anomalies/component.js      |   3 +-
 .../group-constituents-anomalies/template.hbs      |   2 +-
 .../parent-anomalies/component.js                  |   3 +-
 .../parent-anomalies/template.hbs                  |   2 +-
 .../resolution/component.js                        |  60 ++++-
 .../resolution/template.hbs                        |  65 ++++-
 thirdeye/thirdeye-frontend/app/styles/app.scss     |   2 +-
 .../pods/custom/composite-anomalies-table.scss     |  53 ++++
 .../styles/pods/custom/parent-anomalies-table.scss |  24 --
 .../app/utils/anomalies-tree-parser.js             |  58 +++-
 thirdeye/thirdeye-frontend/app/utils/anomaly.js    |   5 +-
 .../app/utils/composite-anomalies.js               |   2 +-
 .../entity-metrics-anomalies/component-test.js     |   4 +-
 .../group-constituents-anomalies/component-test.js |   4 +-
 .../parent-anomalies/component-test.js             |   4 +-
 .../tests/unit/utils/anomalies-tree-parser-test.js |  72 ++++-
 .../bao/jdbc/MergedAnomalyResultManagerImpl.java   |  25 +-
 .../datalayer/bao/MergedAnomalyResultManager.java  |   2 +
 65 files changed, 2007 insertions(+), 371 deletions(-)
 create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/CronJobScheduleJob.java
 create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/TableTaskSchedulerUpdater.java
 create mode 100644 pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/minion/PinotTaskManagerTest.java
 create mode 100644 thirdeye/thirdeye-frontend/app/styles/pods/custom/composite-anomalies-table.scss
 delete mode 100644 thirdeye/thirdeye-frontend/app/styles/pods/custom/parent-anomalies-table.scss


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