This is an automated email from the ASF dual-hosted git repository.
yong pushed a change to branch branch-4.15
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
from f0182edbfb AutoRecovery - Do not call shutdown() on the main
ZookKeeper client thread (#3487)
new 58db136bf7 Add latency stats for entry location index lookup so that
possible RocksDB bottleneck can be detected (#3444)
new e84b08c4d6 Optimize log for failed to write entry (#3463)
new 32151b1602 Bump snakeyaml from 1.30 to 1.31 to solve CVE-2022-25857
(#3469)
new b876ebc353 Fix the deadlock when only using io thread to handle
request (#3480)
new fb8cf1e3e5 upgrade hadoop version to 3.2.4 (#3485)
new 3b556e8fc6 Check if channel closed before processing read request
(#3486)
new e10aa34416 Bump snakeyaml from 1.31 to 1.32 to solve CVE-2022-38752
(#3491)
The 7 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:
.../apache/bookkeeper/test/TestStatsProvider.java | 4 ++
.../bookie/storage/ldb/EntryLocationIndex.java | 12 +++-
.../storage/ldb/EntryLocationIndexStats.java | 9 +++
.../org/apache/bookkeeper/client/PendingAddOp.java | 4 +-
.../bookkeeper/proto/PacketProcessorBase.java | 8 ++-
.../bookkeeper/proto/ReadEntryProcessor.java | 7 ++
.../bookkeeper/proto/ReadEntryProcessorV3.java | 7 ++
.../bookie/storage/ldb/EntryLocationIndexTest.java | 29 ++++++++
.../client/BookieRecoveryUseIOThreadTest.java | 77 ++++++++++++++++++++++
.../proto/ForceLedgerProcessorV3Test.java | 1 +
.../proto/LongPollReadEntryProcessorV3Test.java | 1 +
.../bookkeeper/proto/ReadEntryProcessorTest.java | 1 +
.../bookkeeper/proto/WriteEntryProcessorTest.java | 1 +
.../proto/WriteEntryProcessorV3Test.java | 1 +
.../org/apache/bookkeeper/stats/OpStatsLogger.java | 8 +--
pom.xml | 4 +-
16 files changed, 162 insertions(+), 12 deletions(-)
create mode 100644
bookkeeper-server/src/test/java/org/apache/bookkeeper/client/BookieRecoveryUseIOThreadTest.java