This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-21512
in repository https://gitbox.apache.org/repos/asf/hbase.git.
discard 0e4a042 HBASE-21717 Implement Connection based on AsyncConnection
discard 834d3ea HBASE-21585 Remove ClusterConnection
discard 98ec153 HBASE-21779 Reimplement BulkLoadHFilesTool to use
AsyncClusterConnection
discard 07042fb HBASE-21778 Remove the usage of the locateRegion related
methods in ClusterConnection
discard 2d5a87a HBASE-21719 Rewrite RegionPlacementMaintainer to use
AsyncClusterConnection
discard 7bcf640 HBASE-21537 Rewrite ServerManager.closeRegionSilentlyAndWait
to use AsyncClusterConnection
discard d79dc41 HBASE-21671 Rewrite RegionReplicaReplicationEndpoint to use
AsyncClusterConnection
discard 83d8ffc HBASE-21538 Rewrite RegionReplicaFlushHandler to use
AsyncClusterConnection
discard 9e69a09 HBASE-21579 Use AsyncClusterConnection for
HBaseInterClusterReplicationEndpoint
discard 25ab071 HBASE-21526 Use AsyncClusterConnection in ServerManager for
getRsAdmin
discard f16912d HBASE-21516 Use AsyncConnection instead of Connection in
SecureBulkLoadManager
discard 0f65670 HBASE-21515 Also initialize an AsyncClusterConnection in
HRegionServer
add c52dd9e HBASE-22061 SplitTableRegionProcedure should hold the lock of
its daughter regions
add 659bc9d HBASE-22077 Expose sleep time as CLI argument of
IntergationTestBackupRestore (Tamas Adami)
add 556b981 HBASE-22063 Deprecated Admin.deleteSnapshot(byte[])
add cbd9c9b HBASE-22065 Add listTableDescriptors(List<TableName>) method
in AsyncAdmin
add d857c91 HBASE-22051 Expect values are hard-coded in the verifications
of TestRSGroupsBasics
add 36f0929 HBASE-21991: Fix MetaMetrics issues - [Race condition, Faulty
remove logic], few improvements
add 7e3ca70 HBASE-21965 Fix failed split and merge transactions that have
failed to roll back
add 21cb00e HBASE-22064 Remove Admin.deleteSnapshot(byte[])
new c145bd2 HBASE-21515 Also initialize an AsyncClusterConnection in
HRegionServer
new 332bfbf HBASE-21516 Use AsyncConnection instead of Connection in
SecureBulkLoadManager
new 45e6042 HBASE-21526 Use AsyncClusterConnection in ServerManager for
getRsAdmin
new 2c10bff HBASE-21579 Use AsyncClusterConnection for
HBaseInterClusterReplicationEndpoint
new 6ad43b3 HBASE-21538 Rewrite RegionReplicaFlushHandler to use
AsyncClusterConnection
new b71193e HBASE-21671 Rewrite RegionReplicaReplicationEndpoint to use
AsyncClusterConnection
new c0c55f9 HBASE-21537 Rewrite ServerManager.closeRegionSilentlyAndWait
to use AsyncClusterConnection
new 0f65da7 HBASE-21719 Rewrite RegionPlacementMaintainer to use
AsyncClusterConnection
new a9dc1d3 HBASE-21778 Remove the usage of the locateRegion related
methods in ClusterConnection
new 65855ad HBASE-21779 Reimplement BulkLoadHFilesTool to use
AsyncClusterConnection
new 033affa HBASE-21585 Remove ClusterConnection
new 07264a6 HBASE-21717 Implement Connection based on AsyncConnection
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 (0e4a042)
\
N -- N -- N refs/heads/HBASE-21512 (07264a6)
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 12 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:
.../java/org/apache/hadoop/hbase/client/Admin.java | 8 -
.../org/apache/hadoop/hbase/client/AsyncAdmin.java | 7 +
.../hadoop/hbase/client/AsyncHBaseAdmin.java | 5 +
.../org/apache/hadoop/hbase/client/HBaseAdmin.java | 5 -
.../org/apache/hadoop/hbase/client/HBaseHbck.java | 16 ++
.../java/org/apache/hadoop/hbase/client/Hbck.java | 15 ++
.../hadoop/hbase/client/RawAsyncHBaseAdmin.java | 10 ++
.../hbase/shaded/protobuf/RequestConverter.java | 9 ++
.../hadoop/hbase/IntegrationTestBackupRestore.java | 24 ++-
.../src/main/protobuf/Master.proto | 16 ++
.../hadoop/hbase/rsgroup/TestRSGroupsBasics.java | 58 +++++--
.../hadoop/hbase/coprocessor/MetaTableMetrics.java | 118 +++++++-------
.../hadoop/hbase/master/MasterRpcServices.java | 167 ++++++++++++++++++++
.../assignment/SplitTableRegionProcedure.java | 80 +++++++---
.../hbase/regionserver/HRegionFileSystem.java | 6 +
.../apache/hadoop/hbase/util/LossyCounting.java | 11 +-
.../hbase/client/TestAsyncTableAdminApi3.java | 18 +++
.../org/apache/hadoop/hbase/client/TestHbck.java | 172 +++++++++++++++++++++
.../hbase/client/TestSnapshotFromClient.java | 2 +-
.../client/TestSnapshotTemporaryDirectory.java | 6 +-
.../hbase/coprocessor/TestMetaTableMetrics.java | 99 ++++++++++++
.../master/cleaner/TestSnapshotFromMaster.java | 2 +-
.../snapshot/TestFlushSnapshotFromClient.java | 2 +-
.../hadoop/hbase/util/TestLossyCounting.java | 10 +-
.../hadoop/hbase/thrift2/client/ThriftAdmin.java | 5 -
25 files changed, 737 insertions(+), 134 deletions(-)