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

yong pushed a change to branch branch-4.16
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


    from a05688fc50 Bump to next version
     new 7240bde187 Support skip invalid journal record in replying journal 
stage (#3956)
     new 2060f9fb29 Change pendingDeletedLedgers as ConcurrentHashSet (#3989)
     new 760644b134 Upgrade Netty to 4.1.94.Final (#3999)
     new b519cf9053 Recycle LongWrapper finally (#4007)
     new 4c87a1793c Fix deletedLedgers count (#4026)
     new e531fd1806 Allow to set max operation numbers in a single rocksdb 
batch (#4044)
     new 15d310f9bd [release] Force to use linux/amd64 to build release (#4060)
     new d2cacdd964 Bump guava version from 31.0.1-jre to 32.0.1-jre (#4008)

The 8 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:
 bookkeeper-dist/src/assemble/bin-all.xml           |   2 +-
 bookkeeper-dist/src/assemble/bin-server.xml        |   2 +-
 bookkeeper-dist/src/assemble/bkctl.xml             |   2 +-
 .../src/main/resources/LICENSE-all.bin.txt         | 152 ++++++++++-----------
 .../src/main/resources/LICENSE-bkctl.bin.txt       | 148 ++++++++++----------
 .../src/main/resources/LICENSE-server.bin.txt      | 152 ++++++++++-----------
 .../src/main/resources/NOTICE-all.bin.txt          |  30 ++--
 .../src/main/resources/NOTICE-bkctl.bin.txt        |  26 ++--
 .../src/main/resources/NOTICE-server.bin.txt       |  30 ++--
 .../LICENSE.aalto-xml.txt                          |   0
 .../LICENSE.base64.txt                             |   0
 .../LICENSE.bouncycastle.txt                       |   0
 .../LICENSE.caliper.txt                            |   0
 .../LICENSE.commons-lang.txt                       |   0
 .../LICENSE.commons-logging.txt                    |   0
 .../LICENSE.compress-lzf.txt                       |   0
 .../LICENSE.dnsinfo.txt                            |   0
 .../LICENSE.harmony.txt                            |   0
 .../LICENSE.hpack.txt                              |   0
 .../LICENSE.hyper-hpack.txt                        |   0
 .../LICENSE.jboss-marshalling.txt                  |   0
 .../LICENSE.jbzip2.txt                             |   0
 .../LICENSE.jctools.txt                            |   0
 .../LICENSE.jfastlz.txt                            |   0
 .../LICENSE.jsr166y.txt                            |   0
 .../LICENSE.jzlib.txt                              |   0
 .../LICENSE.libdivsufsort.txt                      |   0
 .../LICENSE.log4j.txt                              |   0
 .../{netty-4.1.93.Final => netty}/LICENSE.lz4.txt  |   0
 .../LICENSE.lzma-java.txt                          |   0
 .../LICENSE.mvn-wrapper.txt                        |   0
 .../LICENSE.nghttp2-hpack.txt                      |   0
 .../LICENSE.protobuf.txt                           |   0
 .../LICENSE.slf4j.txt                              |   0
 .../LICENSE.snappy.txt                             |   0
 .../LICENSE.webbit.txt                             |   0
 .../NOTICE.harmony.txt                             |   0
 .../org/apache/bookkeeper/bookie/BookieImpl.java   |   2 +-
 .../java/org/apache/bookkeeper/bookie/Journal.java |  16 ++-
 .../bookie/storage/ldb/KeyValueStorage.java        |   4 +
 .../bookie/storage/ldb/KeyValueStorageRocksDB.java |  28 +++-
 .../bookie/storage/ldb/LedgerMetadataIndex.java    |  60 ++++----
 .../bookie/storage/ldb/LedgersIndexRebuildOp.java  |   2 +-
 .../bookkeeper/conf/ServerConfiguration.java       |  45 ++++++
 .../cli/commands/bookie/ReadJournalCommand.java    |   2 +-
 .../bookkeeper/bookie/BookieJournalTest.java       | 117 +++++++++++++++-
 .../bookie/storage/ldb/KeyValueStorageTest.java    |  37 +++++
 dev/release/000-run-docker.sh                      |   2 +-
 dev/release/Dockerfile                             |   2 +-
 pom.xml                                            |   4 +-
 50 files changed, 553 insertions(+), 312 deletions(-)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.aalto-xml.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.base64.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.bouncycastle.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.caliper.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.commons-lang.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.commons-logging.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.compress-lzf.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.dnsinfo.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.harmony.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.hpack.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.hyper-hpack.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.jboss-marshalling.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.jbzip2.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.jctools.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.jfastlz.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.jsr166y.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.jzlib.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.libdivsufsort.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.log4j.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.lz4.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.lzma-java.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.mvn-wrapper.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.nghttp2-hpack.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.protobuf.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.slf4j.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.snappy.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/LICENSE.webbit.txt (100%)
 rename bookkeeper-dist/src/main/resources/deps/{netty-4.1.93.Final => 
netty}/NOTICE.harmony.txt (100%)

Reply via email to