This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-24950
in repository https://gitbox.apache.org/repos/asf/hbase.git.
discard d233204 HBASE-24607 Implement CatalogJanitor for 'root table' (#2377)
omit b38dda4 HBASE-24606 Implement meta merge (#2311)
omit 656a779 HBASE-24391 Implement meta split (#2010)
omit f74450e HBASE-24459 Move the locateMeta logic from
AsyncMetaRegionTableLocator to ConnectionRegistry (#2095)
omit 6610386 HBASE-24390 Remove RegionInfoBuilder.FIRST_META_REGIONINFO
(#1877)
omit 87ce463 HBASE-24389 Introduce new master rpc methods to locate meta
region through root region (#1774)
omit 6fb84e3 HBASE-24388 Store the locations of meta regions in master
local store (#1746)
add bc15b61 HBASE-24776 [hbtop] Support Batch mode (#2291)
add ce59a2b HBASE-25004 : Log RegionTooBusyException details (#2371)
add bbfbe33 HBASE-24958 CompactingMemStore.timeOfOldestEdit error update
(#2321)
add 9c5dbb2 HBASE-24764: Add support of adding default peer configs via
hbase-site.xml for all replication peers. (#2284)
new 5a23d65 HBASE-24388 Store the locations of meta regions in master
local store (#1746)
new ac93c94 HBASE-24389 Introduce new master rpc methods to locate meta
region through root region (#1774)
new e2a100b HBASE-24390 Remove RegionInfoBuilder.FIRST_META_REGIONINFO
(#1877)
new b0eff2a HBASE-24459 Move the locateMeta logic from
AsyncMetaRegionTableLocator to ConnectionRegistry (#2095)
new d1ec0fb HBASE-24391 Implement meta split (#2010)
new 952ed94 HBASE-24606 Implement meta merge (#2311)
new 784daeb HBASE-24607 Implement CatalogJanitor for 'root table' (#2377)
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 (d233204)
\
N -- N -- N refs/heads/HBASE-24950 (784daeb)
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 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:
.../replication/ReplicationPeerConfigUtil.java | 38 +++++
.../java/org/apache/hadoop/hbase/hbtop/HBTop.java | 164 +++++++++++++++++----
.../hbase/hbtop/screen/AbstractScreenView.java | 1 +
.../apache/hadoop/hbase/hbtop/screen/Screen.java | 26 +++-
.../hbase/hbtop/screen/top/TopScreenModel.java | 49 ++++--
.../hbase/hbtop/screen/top/TopScreenPresenter.java | 48 ++++--
.../hbase/hbtop/screen/top/TopScreenView.java | 48 ++++--
.../hadoop/hbase/hbtop/terminal/Terminal.java | 2 +-
.../hbtop/terminal/impl/batch/BatchTerminal.java | 80 ++++++++++
.../terminal/impl/batch/BatchTerminalPrinter.java | 33 +++--
.../hbase/hbtop/screen/top/TestTopScreenModel.java | 16 +-
.../hbtop/screen/top/TestTopScreenPresenter.java | 3 +-
.../replication/TestZKReplicationPeerStorage.java | 47 ++++++
.../hbase/master/assignment/ServerStateNode.java | 1 -
.../master/replication/ReplicationPeerManager.java | 5 +
.../hbase/regionserver/AbstractMemStore.java | 6 +-
.../hbase/regionserver/CompactingMemStore.java | 1 +
.../hadoop/hbase/regionserver/DefaultMemStore.java | 1 +
.../apache/hadoop/hbase/regionserver/HRegion.java | 31 ++--
.../hbase/regionserver/TestCompactingMemStore.java | 24 +++
.../hbase/replication/TestMasterReplication.java | 80 ++++++++++
21 files changed, 597 insertions(+), 107 deletions(-)
create mode 100644
hbase-hbtop/src/main/java/org/apache/hadoop/hbase/hbtop/terminal/impl/batch/BatchTerminal.java
copy
hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/monkies/CalmChaosMonkey.java
=>
hbase-hbtop/src/main/java/org/apache/hadoop/hbase/hbtop/terminal/impl/batch/BatchTerminalPrinter.java
(60%)