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

lhotari pushed a change to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/pulsar.git


    from 65ddd44f2d6 [fix][broker] Prevent unexpected recycle failure in 
dispatcher's read callback (#24741)
     new 340707410fa [fix][broker] First entry will be skipped if opening 
NonDurableCursor while trimmed ledger is adding first entry. (#24738)
     new 0e877bdff9e [improve][broker] If there is a deadlock in the service, 
the probe should return a failure because the service may be unavailable 
(#23634)
     new 16ae3b00881 [improve][build] Upgrade Lombok to 1.18.42 to fully 
support JDK25 (#24763)
     new 83676202735 [fix][ci] Fix CI for Java 25 including upgrade of Gradle 
Develocity Maven extension (#24767)
     new ec7954976fe [fix][test] Flaky-test: 
BrokerServiceTest.testShutDownWithMaxConcurrentUnload (#24769)
     new d1ff4c56e54 [fix][misc] Fix compareTo contract violation for 
NamespaceBundleStats, TimeAverageMessageData and ResourceUnitRanking (#24772)

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:
 .github/workflows/ci-owasp-dependency-check.yaml   |   2 +-
 .github/workflows/pulsar-ci-flaky.yaml             |   2 +-
 .github/workflows/pulsar-ci.yaml                   |   2 +-
 .mvn/extensions.xml                                |   4 +-
 .../mledger/impl/NonDurableCursorImpl.java         |   5 +-
 .../mledger/impl/NonDurableCursorTest.java         |  63 +++++++-
 pom.xml                                            |   2 +-
 pulsar-broker-common/pom.xml                       |   6 +
 .../pulsar/common/configuration/VipStatus.java     |  99 +++++++++++--
 .../pulsar/common/configuration/VipStatusTest.java | 161 +++++++++++++++++++++
 .../loadbalance/impl/SimpleLoadManagerImpl.java    |   2 +-
 .../extensions/models/TopKBundlesTest.java         |  25 ++++
 .../pulsar/broker/service/BrokerServiceTest.java   |   3 +-
 .../data/loadbalancer/NamespaceBundleStats.java    |  50 +++----
 .../loadbalancer/NamespaceBundleStatsTest.java     |  48 ++++++
 .../org/apache/pulsar/common/util/CompareUtil.java |  61 ++++++++
 .../data/loadbalancer/ResourceUnitRanking.java     |  10 +-
 .../data/loadbalancer/TimeAverageMessageData.java  |  38 ++++-
 .../apache/pulsar/common/util/CompareUtilTest.java |  87 +++++++++++
 .../loadbalancer/TimeAverageMessageDataTest.java   |  44 ++++++
 20 files changed, 657 insertions(+), 57 deletions(-)
 create mode 100644 
pulsar-broker-common/src/test/java/org/apache/pulsar/common/configuration/VipStatusTest.java
 create mode 100644 
pulsar-client-admin-api/src/test/java/org/apache/pulsar/policies/data/loadbalancer/NamespaceBundleStatsTest.java
 create mode 100644 
pulsar-common/src/main/java/org/apache/pulsar/common/util/CompareUtil.java
 create mode 100644 
pulsar-common/src/test/java/org/apache/pulsar/common/util/CompareUtilTest.java
 create mode 100644 
pulsar-common/src/test/java/org/apache/pulsar/policies/data/loadbalancer/TimeAverageMessageDataTest.java

Reply via email to