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

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


 discard 1460b0a  quickstart broker tls properties
 discard ba6eac2  client-broker TLS
 discard 9e53803  hard-code quickstart properties
 discard 5787625  generate localhost cert
 discard 1304b16  use unique output file names in csv mode
 discard 69e2d81  remove junit imports
 discard 40096f2  cert scripts
     add e87e141  [TE] limit reflection scanning range (#6405)
     add 02ab193  remove accidental junit imports (#6404)
     add 8fcb17d  Compatibility test for segment operations upload and delete 
(#6382)
     add 8def748  Make minion tasks pluggable via reflection (#6395)
     add f09de82  Fix the raw single column distinct executors (#6411)
     new 95e6af6  cert scripts
     new 6ddb552  use unique output file names in csv mode
     new d4ac67e  generate localhost cert
     new a901bd1  hard-code quickstart properties
     new 84a9bea  client-broker TLS
     new 98c1e62  quickstart broker tls properties

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   (1460b0a)
            \
             N -- N -- N   refs/heads/pinot-broker-https-discussion (98c1e62)

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 6 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:
 .../helix/ControllerRequestURLBuilder.java         |  13 +-
 .../generator/ConvertToRawIndexTaskGenerator.java  |   7 +-
 .../core/minion/generator/PinotTaskGenerator.java  |  14 +-
 .../RealtimeToOfflineSegmentsTaskGenerator.java    |  10 +-
 .../SegmentGenerationAndPushTaskGenerator.java     |  32 +--
 .../minion/generator/TaskGeneratorRegistry.java    |  59 +++--
 ...RealtimeToOfflineSegmentsTaskGeneratorTest.java |  43 ++--
 .../BaseRawFloatSingleColumnDistinctExecutor.java  |   2 +-
 .../BaseRawIntSingleColumnDistinctExecutor.java    |   2 +-
 .../BaseRawLongSingleColumnDistinctExecutor.java   |   2 +-
 .../BaseRawStringSingleColumnDistinctExecutor.java |   2 +-
 .../apache/pinot/queries/DistinctQueriesTest.java  |  42 +++-
 .../pinot/compat/tests/ClusterDescriptor.java      |  10 +-
 .../org/apache/pinot/compat/tests/SegmentOp.java   | 256 +++++++++++++++++++--
 .../org/apache/pinot/compat/tests/TableOp.java     |  26 ++-
 .../pinot/integration/tests/ClusterTest.java       |  66 +++---
 .../tests/SimpleMinionClusterIntegrationTest.java  |  71 +++---
 .../compat-tests/configs/feature-test-1.json       |  28 +--
 .../src/test/resources/compat-tests/sample.yaml    |  16 +-
 .../org/apache/pinot/minion/MinionStarter.java     |  25 +-
 .../DefaultMinionEventObserver.java                |   2 +-
 .../DefaultMinionEventObserverFactory.java         |  18 +-
 .../minion/event/EventObserverFactoryRegistry.java |  85 +++++++
 .../{events => event}/MinionEventObserver.java     |   2 +-
 .../MinionEventObserverFactory.java                |  19 +-
 .../events/EventObserverFactoryRegistry.java       |  50 ----
 .../ConvertToRawIndexTaskExecutorFactory.java      |  14 ++
 .../executor/MergeRollupTaskExecutorFactory.java   |  15 ++
 .../minion/executor/PinotTaskExecutorFactory.java  |  14 +-
 .../minion/executor/PurgeTaskExecutorFactory.java  |  14 ++
 ...altimeToOfflineSegmentsTaskExecutorFactory.java |  18 +-
 ...egmentGenerationAndPushTaskExecutorFactory.java |  15 ++
 .../executor/TaskExecutorFactoryRegistry.java      |  62 +++--
 .../minion/taskfactory/TaskFactoryRegistry.java    |  22 +-
 .../minion/EventObserverFactory.java}              |  14 +-
 .../minion/TaskExecutorFactory.java}               |  14 +-
 .../minion/TaskGenerator.java}                     |  14 +-
 thirdeye/pom.xml                                   |   2 +-
 .../dashboard/ThirdEyeDashboardApplication.java    |   8 +-
 .../anomaly/ThirdEyeAnomalyApplication.java        |   7 +
 .../thirdeye/common/ThirdEyeConfiguration.java     |  13 ++
 .../registry/DetectionAlertRegistry.java           |  28 ++-
 .../annotation/registry/DetectionRegistry.java     |  24 +-
 43 files changed, 857 insertions(+), 343 deletions(-)
 rename pinot-minion/src/main/java/org/apache/pinot/minion/{events => 
event}/DefaultMinionEventObserver.java (97%)
 rename pinot-minion/src/main/java/org/apache/pinot/minion/{events => 
event}/DefaultMinionEventObserverFactory.java (75%)
 create mode 100644 
pinot-minion/src/main/java/org/apache/pinot/minion/event/EventObserverFactoryRegistry.java
 rename pinot-minion/src/main/java/org/apache/pinot/minion/{events => 
event}/MinionEventObserver.java (97%)
 rename pinot-minion/src/main/java/org/apache/pinot/minion/{events => 
event}/MinionEventObserverFactory.java (72%)
 delete mode 100644 
pinot-minion/src/main/java/org/apache/pinot/minion/events/EventObserverFactoryRegistry.java
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/{config/table/tuner/Tuner.java => 
annotations/minion/EventObserverFactory.java} (76%)
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/{config/table/tuner/Tuner.java => 
annotations/minion/TaskExecutorFactory.java} (76%)
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/{config/table/tuner/Tuner.java => 
annotations/minion/TaskGenerator.java} (76%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to