This is an automated email from the ASF dual-hosted git repository.
penghui pushed a change to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/pulsar.git.
from 483a6db Fix the schema deletion when delete topic with delete schema
(#11501)
new a68cf5c [Issue 11473] [Python] Fix fields that are ignoring the
required key argument (#11508)
new fdc5eab Fix data lost when using earliest position to subscribe to a
topic (#11547)
new fafdb47 [ManagedLedger] Compress managed ledger info (#11490)
The 3 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:
.../mledger/ManagedLedgerFactoryConfig.java | 6 +
.../mledger/impl/ManagedLedgerFactoryImpl.java | 2 +-
.../bookkeeper/mledger/impl/ManagedLedgerImpl.java | 3 +-
.../bookkeeper/mledger/impl/MetaStoreImpl.java | 118 ++++++++++++++++++-
managed-ledger/src/main/proto/MLDataFormats.proto | 13 +++
.../impl/ManagedLedgerInfoMetadataTest.java | 130 +++++++++++++++++++++
.../apache/pulsar/broker/ServiceConfiguration.java | 5 +
.../pulsar/broker/ManagedLedgerClientFactory.java | 1 +
.../pulsar/broker/service/BrokerTestBase.java | 8 ++
.../service/ManagedLedgerCompressionTest.java | 99 ++++++++++++++++
.../pulsar/client/api/ConsumerRedeliveryTest.java | 54 +++++++++
.../python/pulsar/schema/definition.py | 9 +-
pulsar-client-cpp/python/schema_test.py | 26 ++++-
13 files changed, 466 insertions(+), 8 deletions(-)
create mode 100644
managed-ledger/src/test/java/org/apache/bookkeeper/mledger/impl/ManagedLedgerInfoMetadataTest.java
create mode 100644
pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ManagedLedgerCompressionTest.java