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

mcvsubbu pushed a change to branch try-helix-0.9.1
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard df13efa  Upgrade Helix to version 0.9.1
     add 6ee6a41  [TE] Add unit test for DetectionEmailAlerter - fix casting 
bug (#4717)
     add 3579aae  Remove the segment missing error message when acquiring 
segments (#4714)
     add a78ac5c  [TE][RCA] Fix the broken RCA algorithm tab (#4720)
     add dc17239  Package parquet and orc record reader into shaded jar (#4716)
     add f245b5e  [TE] support row count metric for Pinot (#4718)
     add e9e6a33  [TE] frontend - harleyjj/alert-details - handle concurrency 
errors in alert details component (#4721)
     add a6f8f1e  [Resource Assignment] Plug in resource assignment to LLC 
REALTIME table (#4695)
     add 860cb92  Enable full stack trace when there is an exception during 
tests (#4727)
     new b82a0e6  Upgrade Helix to version 0.9.1

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   (df13efa)
            \
             N -- N -- N   refs/heads/try-helix-0.9.1 (b82a0e6)

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 1 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:
 .../PartitionAwareOfflineRoutingTableBuilder.java  |   23 +-
 ...rtitionAwareOfflineRoutingTableBuilderTest.java |   44 +-
 .../common/assignment/InstancePartitionsUtils.java |   32 +-
 .../apache/pinot/common/config/IndexingConfig.java |   11 -
 .../common/config/StreamConsumptionConfig.java     |   35 -
 .../apache/pinot/common/config/TableConfig.java    |   10 -
 .../apache/pinot/common/config/TagNameUtils.java   |   15 -
 .../pinot/common/metrics/ControllerMeter.java      |    4 +-
 .../common/partition/PartitionAssignment.java      |  109 -
 ...roupBasedStreamPartitionAssignmentStrategy.java |   83 -
 .../partition/ReplicaGroupPartitionAssignment.java |  124 --
 .../ReplicaGroupPartitionAssignmentGenerator.java  |  128 --
 .../StreamPartitionAssignmentGenerator.java        |  139 --
 .../StreamPartitionAssignmentStrategy.java         |   40 -
 .../StreamPartitionAssignmentStrategyFactory.java  |   45 -
 .../UniformStreamPartitionAssignmentStrategy.java  |   66 -
 .../pinot/common/config/TableConfigTest.java       |   23 -
 .../common/partition/IdealStateBuilderUtil.java    |  179 --
 ...icaGroupBasedStreamPartitionAssignmentTest.java |  136 --
 .../StreamPartitionAssignmentGeneratorTest.java    |  364 ----
 .../UniformStreamPartitionAssignmentTest.java      |   93 -
 .../apache/pinot/controller/ControllerStarter.java |    2 +-
 .../helix/core/PinotHelixResourceManager.java      |   79 +-
 .../helix/core/PinotTableIdealStateBuilder.java    |    7 +-
 .../instance/InstanceTagPoolSelector.java          |    4 +-
 .../assignment/segment/SegmentAssignmentUtils.java |    3 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   | 1395 +++++--------
 .../core/realtime/SegmentCompletionManager.java    |   63 +-
 .../helix/core/realtime/TableConfigCache.java      |   12 +-
 .../segment/DefaultFlushThresholdUpdater.java      |   46 +-
 .../segment/FlushThresholdUpdateManager.java       |   32 +-
 .../realtime/segment/FlushThresholdUpdater.java    |   22 +-
 .../SegmentSizeBasedFlushThresholdUpdater.java     |   45 +-
 .../RealtimeSegmentValidationManager.java          |    6 +-
 .../PinotLLCRealtimeSegmentManagerTest.java        | 2114 +++++++-------------
 .../helix/core/realtime/SegmentCompletionTest.java |   32 +-
 .../segment/FlushThresholdUpdaterTest.java         |  939 +++------
 .../core/data/manager/BaseTableDataManager.java    |   36 +-
 .../pinot/core/data/manager/TableDataManager.java  |   25 +-
 .../manager/offline/OfflineTableDataManager.java   |    3 +-
 .../manager/realtime/RealtimeTableDataManager.java |    8 +-
 .../query/executor/ServerQueryExecutorV1Impl.java  |   31 +-
 .../ConsumingSegmentAssignmentStrategy.java        |   61 -
 .../segment/RealtimeSegmentAssignmentStrategy.java |   41 -
 .../stream/PartitionLevelStreamConfig.java         |   66 +-
 .../pinot/core/realtime/stream/StreamConfig.java   |  155 +-
 .../impl/fakestream/FakeStreamConfigUtils.java     |   10 -
 .../ConsumingSegmentAssignmentStrategyTest.java    |  285 ---
 .../core/realtime/stream/StreamConfigTest.java     |  242 +--
 pinot-hadoop/pom.xml                               |   26 +-
 .../tests/PinotURIUploadIntegrationTest.java       |   32 -
 pom.xml                                            |    1 +
 .../app/pods/components/alert-details/component.js |   83 +-
 .../app/pods/components/alert-details/template.hbs |    6 +-
 .../rootcause-dimensions-algorithm/component.js    |    1 +
 .../onboard/AutoOnboardPinotMetadataSource.java    |    6 +-
 .../thirdeye/cube/summary/SummaryResponse.java     |   18 +
 .../dashboard/resources/SummaryResource.java       |   60 +-
 .../pinot/resultset/ThirdEyeResultSetUtils.java    |    4 +-
 .../alert/scheme/DetectionEmailAlerter.java        |   59 +-
 .../pinot/PinotThirdEyeDataSourceTest.java         |    2 +-
 .../detection/alert/filter/AlertFilterUtils.java   |   23 +-
 .../ToAllRecipientsDetectionAlertFilterTest.java   |    2 -
 .../DetectionEmailAlerterTest.java}                |  142 +-
 64 files changed, 2293 insertions(+), 5639 deletions(-)
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/config/StreamConsumptionConfig.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/PartitionAssignment.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/ReplicaGroupBasedStreamPartitionAssignmentStrategy.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/ReplicaGroupPartitionAssignment.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/ReplicaGroupPartitionAssignmentGenerator.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/StreamPartitionAssignmentGenerator.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/StreamPartitionAssignmentStrategy.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/StreamPartitionAssignmentStrategyFactory.java
 delete mode 100644 
pinot-common/src/main/java/org/apache/pinot/common/partition/UniformStreamPartitionAssignmentStrategy.java
 delete mode 100644 
pinot-common/src/test/java/org/apache/pinot/common/partition/IdealStateBuilderUtil.java
 delete mode 100644 
pinot-common/src/test/java/org/apache/pinot/common/partition/ReplicaGroupBasedStreamPartitionAssignmentTest.java
 delete mode 100644 
pinot-common/src/test/java/org/apache/pinot/common/partition/StreamPartitionAssignmentGeneratorTest.java
 delete mode 100644 
pinot-common/src/test/java/org/apache/pinot/common/partition/UniformStreamPartitionAssignmentTest.java
 delete mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/realtime/segment/ConsumingSegmentAssignmentStrategy.java
 delete mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/realtime/segment/RealtimeSegmentAssignmentStrategy.java
 delete mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/realtime/segment/ConsumingSegmentAssignmentStrategyTest.java
 copy 
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/alert/{SendAlertTest.java
 => scheme/DetectionEmailAlerterTest.java} (59%)


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

Reply via email to