You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2022/06/02 18:56:42 UTC

[pinot] branch helix-1.0 updated (55af559d7e -> 2d678a5a10)

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

jlli pushed a change to branch helix-1.0
in repository https://gitbox.apache.org/repos/asf/pinot.git


 discard 55af559d7e Upgrade Helix to 1.0.3
     add 8b2b8f5762 Spark connector pom fixes (#8810)
     add 8788f1c0c3 Allow moveToFinalLocation in METADATA push based on config (#8815)
     add 2b82366c36 [Feature] Deduplication (#8708)
     add b028499439 Adding acl support for helm chart (#8816)
     add 2d678a5a10 Upgrade Helix to 1.0.3

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   (55af559d7e)
            \
             N -- N -- N   refs/heads/helix-1.0 (2d678a5a10)

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:
 .../helm/pinot/templates/broker/configmap.yaml     |   6 +
 .../helm/pinot/templates/controller/configmap.yaml |   8 +-
 kubernetes/helm/pinot/values.yaml                  |  12 ++
 .../apache/pinot/common/metrics/ServerGauge.java   |   4 +-
 .../apache/pinot/common/metrics/ServerMeter.java   |   1 +
 .../common/utils/FileUploadDownloadClient.java     |   2 +
 .../common/utils/config/TableConfigUtils.java      |  13 +-
 .../common/utils/config/TableConfigSerDeTest.java  |  21 +-
 pinot-connectors/pinot-spark-connector/pom.xml     |  64 ++++---
 .../PinotSegmentUploadDownloadRestletResource.java |  10 +-
 .../realtime/LLRealtimeSegmentDataManager.java     |   6 +-
 .../manager/realtime/RealtimeTableDataManager.java |  55 +++++-
 .../realtime/LLRealtimeSegmentDataManagerTest.java |   2 +-
 ...adataAndDictionaryAggregationPlanMakerTest.java |   4 +-
 .../local/dedup/PartitionDedupMetadataManager.java | 156 +++++++++++++++
 .../TableDedupMetadataManager.java}                |  34 ++--
 .../immutable/ImmutableSegmentImpl.java            |  15 +-
 .../indexsegment/mutable/MutableSegmentImpl.java   |  40 +++-
 .../local/realtime/impl/RealtimeSegmentConfig.java |  35 ++--
 .../segment/local/upsert/PartialUpsertHandler.java |  67 +------
 .../upsert/PartitionUpsertMetadataManager.java     |  75 +++-----
 .../local/upsert/TableUpsertMetadataManager.java   |   6 +-
 .../pinot/segment/local/utils/HashUtils.java       |  16 ++
 .../RecordLocation.java => utils/RecordInfo.java}  |  20 +-
 .../segment/local/utils/SegmentPushUtils.java      |   4 +
 .../segment/local/utils/TableConfigUtils.java      | 127 +++++++------
 .../local/utils/tablestate/TableStateUtils.java    |  88 +++++++++
 .../dedup/PartitionDedupMetadataManagerTest.java   | 211 +++++++++++++++++++++
 .../mutable/MutableSegmentDedupeTest.java          | 104 ++++++++++
 .../mutable/MutableSegmentImplTestUtils.java       |  20 +-
 .../MutableSegmentImplUpsertComparisonColTest.java |   5 +-
 .../mutable/MutableSegmentImplUpsertTest.java      |  13 +-
 .../upsert/PartitionUpsertMetadataManagerTest.java |  98 +++++-----
 .../segment/local/utils/TableConfigUtilsTest.java  |  96 ++++++++--
 ...{test_upsert_data.json => test_dedup_data.json} |   4 +-
 ...t_upsert_schema.json => test_dedup_schema.json} |   0
 .../{TableCustomConfig.java => DedupConfig.java}   |  24 ++-
 .../table/{TableType.java => HashFunction.java}    |   4 +-
 .../apache/pinot/spi/config/table/TableConfig.java |  20 +-
 .../pinot/spi/config/table/UpsertConfig.java       |   4 -
 .../spi/ingestion/batch/spec/PushJobSpec.java      |  13 ++
 .../spi/utils/builder/TableConfigBuilder.java      |  10 +-
 .../pinot/spi/config/table/UpsertConfigTest.java   |   4 +-
 43 files changed, 1152 insertions(+), 369 deletions(-)
 create mode 100644 pinot-segment-local/src/main/java/org/apache/pinot/segment/local/dedup/PartitionDedupMetadataManager.java
 copy pinot-segment-local/src/main/java/org/apache/pinot/segment/local/{upsert/TableUpsertMetadataManager.java => dedup/TableDedupMetadataManager.java} (54%)
 copy pinot-segment-local/src/main/java/org/apache/pinot/segment/local/{upsert/RecordLocation.java => utils/RecordInfo.java} (70%)
 create mode 100644 pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/tablestate/TableStateUtils.java
 create mode 100644 pinot-segment-local/src/test/java/org/apache/pinot/segment/local/dedup/PartitionDedupMetadataManagerTest.java
 create mode 100644 pinot-segment-local/src/test/java/org/apache/pinot/segment/local/indexsegment/mutable/MutableSegmentDedupeTest.java
 copy pinot-segment-local/src/test/resources/data/{test_upsert_data.json => test_dedup_data.json} (83%)
 copy pinot-segment-local/src/test/resources/data/{test_upsert_schema.json => test_dedup_schema.json} (100%)
 copy pinot-spi/src/main/java/org/apache/pinot/spi/config/table/{TableCustomConfig.java => DedupConfig.java} (65%)
 copy pinot-spi/src/main/java/org/apache/pinot/spi/config/table/{TableType.java => HashFunction.java} (94%)


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