You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by pe...@apache.org on 2022/09/23 14:45:24 UTC

[pulsar] branch master updated (0c0984a8148 -> c60f895cae6)

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

penghui pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


    from 0c0984a8148 [doc][proxy] Document how to mitigate CVE-2022-24280 (#17825)
     add c60f895cae6 [improve][broker] Make MessageRedeliveryController work more efficiently (#17804)

No new revisions were added by this update.

Summary of changes:
 distribution/server/src/assemble/LICENSE.bin.txt   |   2 +
 pom.xml                                            |   8 +
 pulsar-broker/pom.xml                              |   5 +
 .../persistent/MessageRedeliveryController.java    |  41 ++--
 .../utils/ConcurrentBitmapSortedLongPairSet.java   | 143 ++++++++++++++
 .../MessageRedeliveryControllerTest.java           |  22 +--
 .../ConcurrentBitmapSortedLongPairSetTest.java     | 211 +++++++++++++++++++++
 7 files changed, 391 insertions(+), 41 deletions(-)
 create mode 100644 pulsar-broker/src/main/java/org/apache/pulsar/utils/ConcurrentBitmapSortedLongPairSet.java
 create mode 100644 pulsar-broker/src/test/java/org/apache/pulsar/utils/ConcurrentBitmapSortedLongPairSetTest.java