You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by eo...@apache.org on 2022/09/29 09:06:40 UTC

[pulsar] branch master updated (3de690d44de -> 9026d1954d1)

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

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


    from 3de690d44de [fix][flaky-test]ProxyConnectionThrottlingTest.testInboundConnection (#17883)
     add 9026d1954d1 [Fix][Tiered Storage] Eagerly Delete Offloaded Segments On Topic Deletion (#15914)

No new revisions were added by this update.

Summary of changes:
 .../bookkeeper/mledger/ManagedLedgerFactory.java   |  20 ++
 .../mledger/impl/ManagedLedgerFactoryImpl.java     | 110 +++++++++--
 .../bookkeeper/mledger/impl/ManagedLedgerImpl.java |  78 ++++----
 .../bookkeeper/mledger/offload/OffloadUtils.java   |  28 +++
 .../bookkeeper/mledger/impl/ManagedLedgerTest.java |   8 +-
 .../bookkeeper/mledger/impl/OffloadPrefixTest.java |  61 ++++++
 .../pulsar/broker/service/BrokerService.java       |  32 ++--
 .../broker/service/persistent/PersistentTopic.java | 108 ++++++-----
 .../pulsar/broker/service/PersistentTopicTest.java |   2 +
 .../tests/integration/offload/TestBaseOffload.java | 210 +++++++++++++++++++--
 .../integration/offload/TestFileSystemOffload.java |   5 +-
 .../integration/offload/TestOffloadDeletionFS.java | 144 ++++++++++++++
 .../tests/integration/offload/TestS3Offload.java   |   2 +-
 .../offload/TestUniversalConfigurations.java       |   2 +-
 .../suites/PulsarTieredStorageTestSuite.java       |   4 +-
 15 files changed, 666 insertions(+), 148 deletions(-)
 create mode 100644 tests/integration/src/test/java/org/apache/pulsar/tests/integration/offload/TestOffloadDeletionFS.java