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 f1daa75525c [fix][io] Fix es index creation (#22654) (#22701)
     new db43414efb9 [fix][broker] Avoid being stuck when closing the broker 
with extensible load manager (#22573)
     new d23c77bc61a [fix][fn]make sure the classloader for ContextImpl is 
`functionClassLoader` in different runtimes (#22501)
     new 04c429c7cf7 [fix][sec] Upgrade aws-sdk.version to avoid CVE-2024-21634 
(#22633)
     new 29ee145f538 [fix] [client] Fix Consumer should return configured batch 
receive max messages (#22619)
     new 46d802232b9 [fix][sec] Upgrade elasticsearch-java version to avoid 
CVE-2023-4043 (#22640)
     new 91f42873cad [fix][storage] ReadonlyManagedLedger initialization does 
not fill in the properties (#22630)
     new 13f0aae8a93 [fix][test] Clear MockedPulsarServiceBaseTest fields to 
prevent test runtime memory leak (#22659)
     new f516a852f04 [fix] Fix Reader can be stuck from transaction aborted 
messages. (#22610)
     new 34ce38efc60 [fix][broker] Disable system topic message deduplication 
(#22582)
     new e5515c5d173 [improve][ws] Add memory limit configuration for Pulsar 
client used in Websocket proxy (#22666)
     new 20483f54eff [fix][broker] avoid offload system topic (#22497)
     new 89b545eaa8c [fix][broker] Fix ProducerBusy issue due to incorrect 
userCreatedProducerCount on non-persistent topic (#22685)
     new 8b2d5e9ce9d [fix][client] Fix ReaderBuilder doest not give 
illegalArgument on connection failure retry (#22639)
     new cea5409cde1 [fix][sec] Upgrade postgresql version to avoid 
CVE-2024-1597 (#22635)

The 14 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:
 conf/broker.conf                                   |   3 +
 conf/standalone.conf                               |   3 +
 conf/websocket.conf                                |   3 +
 .../mledger/impl/ReadOnlyManagedLedgerImpl.java    |   8 ++
 .../mledger/util/ManagedLedgerImplUtils.java       |  17 ++--
 .../impl/ReadOnlyManagedLedgerImplTest.java        | 103 ++++++++++++++++++++
 pom.xml                                            |   8 +-
 .../apache/pulsar/broker/ServiceConfiguration.java |   7 ++
 .../org/apache/pulsar/broker/PulsarService.java    |   3 +
 .../store/TableViewLoadDataStoreImpl.java          |   6 +-
 .../pulsar/broker/service/BrokerService.java       |  19 +++-
 .../org/apache/pulsar/broker/service/Topic.java    |  10 ++
 .../service/nonpersistent/NonPersistentTopic.java  |  10 --
 .../service/persistent/MessageDeduplication.java   |   6 +-
 .../broker/service/persistent/PersistentTopic.java |  33 ++++---
 .../broker/service/persistent/SystemTopic.java     |  16 +++
 .../broker/auth/MockedPulsarServiceBaseTest.java   |   7 ++
 .../extensions/ExtensibleLoadManagerCloseTest.java | 107 +++++++++++++++++++++
 .../pulsar/broker/service/BrokerServiceTest.java   |  93 ++++++++++++++++++
 .../nonpersistent/NonPersistentTopicTest.java      |  22 +++++
 .../service/persistent/MessageDuplicationTest.java |  32 ++++++
 .../pulsar/broker/transaction/TransactionTest.java |  69 +++++++++++++
 .../buffer/TopicTransactionBufferTest.java         |  36 ++++---
 .../client/api/ConsumerBatchReceiveTest.java       |   8 +-
 .../client/api/SimpleProducerConsumerTest.java     |  29 ++++++
 .../org/apache/pulsar/client/impl/ReaderTest.java  |  27 ++++++
 .../pulsar/client/impl/ConsumerBuilderImpl.java    |   4 +
 .../pulsar/client/impl/ReaderBuilderImpl.java      |   5 +-
 .../apache/pulsar/client/impl/BuildersTest.java    |   2 +-
 .../functions/instance/JavaInstanceRunnable.java   |   8 +-
 .../apache/pulsar/websocket/WebSocketService.java  |   3 +-
 .../service/WebSocketProxyConfiguration.java       |   3 +
 32 files changed, 637 insertions(+), 73 deletions(-)
 create mode 100644 
managed-ledger/src/test/java/org/apache/bookkeeper/mledger/impl/ReadOnlyManagedLedgerImplTest.java
 create mode 100644 
pulsar-broker/src/test/java/org/apache/pulsar/broker/loadbalance/extensions/ExtensibleLoadManagerCloseTest.java

Reply via email to