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

xiangfu pushed a change to branch fix/adls-blob-soft-delete-support
in repository https://gitbox.apache.org/repos/asf/pinot.git


    omit 6bbb0ebcd1f Fix ADLS Gen2 plugin to support Azure Blob Soft Delete
     add 0038c06a6ab Fix MissingFormatArgumentException due to log (#17801)
     add 61b83649cec Make _pattern final to avoid unsafe initialization (#17804)
     add 83ae0eaf29f Bump org.checkerframework:checker-qual from 3.53.1 to 
3.54.0 (#17802)
     add 68264d294de Enforce broker instance tags configuration at startup 
(#17786)
     add e483e467163 add PinotFS support for streamed untar segment download 
(#17586)
     add 51729e67a86 extend disk utilization check to offline segment upload 
(#17579)
     add ef36e829412 Fix resource tracking for gRPC ReceivingMailbox (#17797)
     add 5df2ffbdbc7  Add global pinot.md5.disabled switch and enforce MD5 
guards (#17800)
     add 832c7d40378 Fixing routing table errors for multi-topic ingestion 
tables (#17810)
     add 7b89d1b4a83 [Bug fix] Fault-Domain-Aware Instance Assignment failing 
rebalance with minimize data movement (#17799)
     add 79a7a30ca2a Bump software.amazon.awssdk:bom from 2.42.4 to 2.42.5 
(#17813)
     add c2de44ce9dd Bump org.jline:jline from 3.30.6 to 4.0.0 (#17814)
     add 4434eda332c Do not pass server metrics in PlanMaker (#17808)
     add 4633cf58866 Add checks to not update upsert / dedup configs after 
table creation (#17645)
     new b07eda45d55 Fix ADLS Gen2 plugin to support Azure Blob Soft Delete

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   (6bbb0ebcd1f)
            \
             N -- N -- N   refs/heads/fix/adls-blob-soft-delete-support 
(b07eda45d55)

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:
 .../broker/broker/helix/BaseBrokerStarter.java     |  10 +
 .../SegmentPartitionMetadataManager.java           |   2 +-
 .../SegmentPartitionMetadataManagerTest.java       |  21 +-
 ... TableConfigBackwardIncompatibleException.java} |   4 +-
 .../utils/fetcher/PinotFSSegmentFetcher.java       |  40 ++++
 .../pinot/common/utils/regex/JavaUtilPattern.java  |   2 +-
 .../utils/fetcher/PinotFSSegmentFetcherTest.java   | 229 +++++++++++++++++++++
 .../pinot/controller/BaseControllerStarter.java    |  19 +-
 .../apache/pinot/controller/ControllerConf.java    |  20 ++
 .../PinotSegmentUploadDownloadRestletResource.java |  26 +++
 .../api/resources/PinotTableRestletResource.java   |  12 +-
 .../api/resources/TableConfigsRestletResource.java |  13 +-
 .../helix/core/PinotHelixResourceManager.java      |  77 ++++++-
 .../instance/FDAwareInstancePartitionSelector.java |   8 +-
 .../RealtimeOffsetAutoResetKafkaHandler.java       |  14 +-
 .../controller/validation/UtilizationChecker.java  |   4 +-
 .../helix/LogicalTableMetadataCacheTest.java       |   2 +-
 .../instance/InstanceAssignmentTest.java           |  61 ++++++
 .../core/plan/maker/InstancePlanMakerImplV2.java   |   7 +-
 .../apache/pinot/core/plan/maker/PlanMaker.java    |  24 ++-
 .../query/executor/ServerQueryExecutorV1Impl.java  |   6 +-
 .../org/apache/pinot/queries/BaseQueriesTest.java  |   6 +-
 .../org/apache/pinot/minion/BaseMinionStarter.java |   3 +
 ...BenchmarkAggregateGroupByOrderByQueriesSSE.java |   6 +-
 .../pinot/plugin/filesystem/ADLSGen2PinotFS.java   |  13 +-
 .../filesystem/test/ADLSGen2PinotFSTest.java       |  32 +++
 .../apache/pinot/plugin/filesystem/S3Config.java   |   6 +
 .../pinot/plugin/filesystem/S3ConfigTest.java      |  13 ++
 .../pinot/query/mailbox/ReceivingMailbox.java      |  93 ++++++++-
 .../operator/BaseMailboxReceiveOperator.java       |   6 +-
 .../pinot/query/mailbox/ReceivingMailboxTest.java  |  71 +++++--
 .../pinot/segment/local/utils/HashUtils.java       |   6 +
 .../segment/local/utils/TableConfigUtils.java      | 158 +++++++++++++-
 .../pinot/segment/local/utils/HashUtilsTest.java   |  16 ++
 .../segment/local/utils/TableConfigUtilsTest.java  |  77 +++++++
 .../pinot/segment/spi/memory/EmptyIndexBuffer.java |  69 +++----
 .../server/starter/helix/BaseServerStarter.java    |   3 +
 .../java/org/apache/pinot/spi/data/Schema.java     |  12 ++
 .../apache/pinot/spi/utils/CommonConstants.java    |   6 +
 .../{ResourceUsageUtils.java => PinotMd5Mode.java} |  29 +--
 .../apache/pinot/spi/utils/PinotMd5ModeTest.java   |  60 ++++++
 pom.xml                                            |   6 +-
 42 files changed, 1152 insertions(+), 140 deletions(-)
 copy 
pinot-common/src/main/java/org/apache/pinot/common/exception/{SchemaBackwardIncompatibleException.java
 => TableConfigBackwardIncompatibleException.java} (86%)
 create mode 100644 
pinot-common/src/test/java/org/apache/pinot/common/utils/fetcher/PinotFSSegmentFetcherTest.java
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/utils/{ResourceUsageUtils.java => 
PinotMd5Mode.java} (56%)
 create mode 100644 
pinot-spi/src/test/java/org/apache/pinot/spi/utils/PinotMd5ModeTest.java


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

Reply via email to