This is an automated email from the ASF dual-hosted git repository. lhotari pushed a change to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/pulsar.git
from fc77e6ac6c6 Update pulsar-sql LICENSE file new 3ec6eea059f [fix] [log] Do not print error log if tenant/namespace does not exist when calling get topic metadata (#23291) new 988b88466d0 [fix][misc] Log Conscrypt security provider initialization warnings at debug level (#23364) new b940c0f7854 [fix][broker] Cancel possible pending replay read in cancelPendingRead (#23384) new 7f8e5087e42 [fix][broker] Fix out-of-order issues with ConsistentHashingStickyKeyConsumerSelector (#23327) The 4 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: ...ConsistentHashingStickyKeyConsumerSelector.java | 104 +++--- .../broker/service/ConsumerIdentityWrapper.java | 70 ++++ .../broker/service/ConsumerNameIndexTracker.java | 136 ++++++++ .../apache/pulsar/broker/service/ServerCnx.java | 41 ++- .../PersistentDispatcherMultipleConsumers.java | 3 +- .../broker/admin/GetPartitionMetadataTest.java | 51 +++ ...istentHashingStickyKeyConsumerSelectorTest.java | 366 ++++++++++++++++++++- .../service/ConsumerIdentityWrapperTest.java | 68 ++++ .../service/ConsumerNameIndexTrackerTest.java | 157 +++++++++ ...ntStickyKeyDispatcherMultipleConsumersTest.java | 9 +- .../java/org/apache/pulsar/client/api/Range.java | 11 +- .../apache/pulsar/common/util/SecurityUtility.java | 9 +- 12 files changed, 945 insertions(+), 80 deletions(-) create mode 100644 pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ConsumerIdentityWrapper.java create mode 100644 pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ConsumerNameIndexTracker.java create mode 100644 pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ConsumerIdentityWrapperTest.java create mode 100644 pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ConsumerNameIndexTrackerTest.java