This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a change to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/pulsar.git
from 0be605e7575 [cleanup][ci] Remove documentation label bot (#25469)
new d947b529655 [improve][client] Deduplicate in-progress lookup requests
also for HttpLookupService (#25017)
new ff90898b88e [fix][sec] Upgrade to async-http-client 2.14.5 to address
CVE-2026-40490 (#25546)
The 2 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:
distribution/server/src/assemble/LICENSE.bin.txt | 6 +-
distribution/shell/src/assemble/LICENSE.bin.txt | 6 +-
pom.xml | 2 +-
.../pulsar/client/api/BrokerServiceLookupTest.java | 7 +-
.../apache/pulsar/client/api/SimpleSchemaTest.java | 6 +-
.../internal/http/AsyncHttpConnectorTest.java | 56 +++++
pulsar-client/pom.xml | 6 +
.../client/impl/BinaryProtoLookupService.java | 205 +++------------
.../org/apache/pulsar/client/impl/HttpClient.java | 89 +++++--
.../pulsar/client/impl/HttpLookupService.java | 14 +-
...rogressDeduplicationDecoratorLookupService.java | 276 +++++++++++++++++++++
.../apache/pulsar/client/impl/LookupService.java | 26 +-
.../pulsar/client/impl/PulsarClientImpl.java | 22 +-
.../client/impl/BinaryProtoLookupServiceTest.java | 21 +-
.../apache/pulsar/client/impl/HttpClientTest.java | 150 +++++++++++
.../pulsar/client/impl/HttpLookupServiceTest.java | 142 +++++++++++
.../proxy/server/ProxyLookupThrottlingTest.java | 3 +-
.../server/ProxyWithExtensibleLoadManagerTest.java | 13 +-
.../pulsar/websocket/LookupProtocolTest.java | 29 +--
19 files changed, 823 insertions(+), 256 deletions(-)
create mode 100644
pulsar-client/src/main/java/org/apache/pulsar/client/impl/InProgressDeduplicationDecoratorLookupService.java
create mode 100644
pulsar-client/src/test/java/org/apache/pulsar/client/impl/HttpClientTest.java
create mode 100644
pulsar-client/src/test/java/org/apache/pulsar/client/impl/HttpLookupServiceTest.java