This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-27109/table_based_rqs
in repository https://gitbox.apache.org/repos/asf/hbase.git
omit e3c1f687df3 HBASE-27212 Implement a new table based replication queue
storage and make the minimum replication system work (#4672)
add b531e714554 HBASE-27301 Add Delete addFamilyVersion timestamp verify
(#4700)
add 9215066e2b8 HBASE-27221 Bump spotless version to 2.24.1 (#4693)
add 8ec02c025ee HBASE-26982 Add index and bloom filter statistics of
LruBlockCache on… (#4376)
add eaa47c5cd4a HBASE-27264 Add options to consider compressed size when
delimiting blocks during hfile writes (#4675)
add 2b9d36869ff HBASE-27279 Make SslHandler work with
SaslWrapHandler/SaslUnwrapHandler (#4705)
add 4a57cbd2cb0 HBASE-27294 Add new hadoop releases in our hadoop checks
(#4692)
add 116458ab049 HBASE-27279 Addendum fix TestSaslTlsIPCRejectPlainText
new 2151ead1a12 HBASE-27212 Implement a new table based replication queue
storage and make the minimum replication system work (#4672)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e3c1f687df3)
\
N -- N -- N refs/heads/HBASE-27109/table_based_rqs (2151ead1a12)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 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:
dev-support/hbase-personality.sh | 29 +-
.../hadoop/hbase/security/HBaseKerberosUtils.java | 9 +
.../org/apache/hadoop/hbase/client/Delete.java | 3 +
.../hadoop/hbase/ipc/NettyRpcConnection.java | 3 +-
.../hbase/security/NettyHBaseSaslRpcClient.java | 8 +-
.../security/NettyHBaseSaslRpcClientHandler.java | 4 +-
.../apache/hadoop/hbase/io/hfile/BlockType.java | 9 +
.../hbase/tmpl/regionserver/BlockCacheTmpl.jamon | 29 +-
.../io/hfile/BlockCompressedSizePredicator.java | 59 ++++
.../apache/hadoop/hbase/io/hfile/HFileBlock.java | 39 ++-
.../hadoop/hbase/io/hfile/HFileWriterImpl.java | 6 +-
.../hadoop/hbase/io/hfile/LruBlockCache.java | 57 +++-
.../PreviousBlockCompressionRatePredicator.java | 62 ++++
...r.java => UncompressedBlockSizePredicator.java} | 40 +--
.../hbase/ipc/NettyHBaseSaslRpcServerHandler.java | 6 +-
.../apache/hadoop/hbase/ipc/NettyRpcServer.java | 5 +-
.../hbase/ipc/NettyRpcServerPreambleHandler.java | 2 +-
.../hadoop/hbase/ipc/NettyServerRpcConnection.java | 10 +-
.../hadoop/hbase/regionserver/TestHStoreFile.java | 74 ++++
...stSecureIPC.java => AbstractTestSecureIPC.java} | 101 ++----
...xt.java => AbstractTestTlsRejectPlainText.java} | 52 ++-
.../security/TestNettyTlsIPCRejectPlainText.java | 121 +------
.../{TestNettyTlsIPC.java => TestSaslTlsIPC.java} | 105 ++----
.../security/TestSaslTlsIPCRejectPlainText.java | 87 +++++
.../hadoop/hbase/security/TestSecureIPC.java | 372 +--------------------
.../hadoop/hbase/security/TestTlsWithKerberos.java | 219 ------------
pom.xml | 4 +-
27 files changed, 560 insertions(+), 955 deletions(-)
create mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/BlockCompressedSizePredicator.java
create mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/PreviousBlockCompressionRatePredicator.java
copy
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/{BlockCachesIterator.java
=> UncompressedBlockSizePredicator.java} (50%)
copy
hbase-server/src/test/java/org/apache/hadoop/hbase/security/{TestSecureIPC.java
=> AbstractTestSecureIPC.java} (80%)
copy
hbase-server/src/test/java/org/apache/hadoop/hbase/security/{TestNettyTlsIPCRejectPlainText.java
=> AbstractTestTlsRejectPlainText.java} (79%)
copy
hbase-server/src/test/java/org/apache/hadoop/hbase/security/{TestNettyTlsIPC.java
=> TestSaslTlsIPC.java} (57%)
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/security/TestSaslTlsIPCRejectPlainText.java
delete mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/security/TestTlsWithKerberos.java