This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a change to branch branch-4.14
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git.
from 455ac52 Release python client 4.14.2 (#2771)
new 577121f Eliminate direct ZK access in ScanAndCompareGarbageCollector
(#2833)
new c01ed32 Remove direct ZK access for Auditor (#2842)
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:
.../bookie/ScanAndCompareGarbageCollector.java | 82 +++---
.../org/apache/bookkeeper/client/BookKeeper.java | 10 +-
.../apache/bookkeeper/client/BookKeeperAdmin.java | 27 +-
.../bookkeeper/meta/FlatLedgerManagerFactory.java | 8 +
.../bookkeeper/meta/LedgerAuditorManager.java | 52 ++++
.../bookkeeper/meta/LedgerManagerFactory.java | 10 +
.../meta/LedgerUnderreplicationManager.java | 6 +
.../LegacyHierarchicalLedgerManagerFactory.java | 8 +
.../bookkeeper/meta/MSLedgerManagerFactory.java | 8 +
.../bookkeeper/meta/ZkLedgerAuditorManager.java | 279 +++++++++++++++++++++
.../meta/ZkLedgerUnderreplicationManager.java | 27 +-
.../bookkeeper/replication/AuditorElector.java | 265 ++++---------------
.../server/http/BKHttpServiceProvider.java | 17 +-
.../server/http/service/WhoIsAuditorService.java | 13 +-
.../commands/autorecovery/WhoIsAuditorCommand.java | 52 ++--
.../bookkeeper/client/BookKeeperTestClient.java | 12 +-
.../apache/bookkeeper/client/MockBookKeeper.java | 5 -
.../bookkeeper/client/TestBookieWatcher.java | 2 +-
.../replication/AuditorRollingRestartTest.java | 6 +-
.../replication/AutoRecoveryMainTest.java | 50 ++--
.../autorecovery/WhoIsAuditorCommandTest.java | 13 +-
21 files changed, 588 insertions(+), 364 deletions(-)
create mode 100644
bookkeeper-server/src/main/java/org/apache/bookkeeper/meta/LedgerAuditorManager.java
create mode 100644
bookkeeper-server/src/main/java/org/apache/bookkeeper/meta/ZkLedgerAuditorManager.java