This is an automated email from the ASF dual-hosted git repository.
apurtell pushed a change to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git.
from 3a11028 Throw DNRIOE when connection or rpc client is closed
new 1fd76bd HBASE-21680 Port HBASE-20194 (Basic Replication WebUI -
Master) and HBASE-20193 (Basic Replication Web UI - Regionserver) to branch-1
new aa1b750 HBASE-21749 RS UI may throw NPE and make rs-status page
inaccessible with multiwal and replication
The 2 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:
.../hbase/tmpl/master/MasterStatusTmpl.jamon | 42 +++++++
.../hbase/tmpl/master/RegionServerListTmpl.jamon | 86 +++++++++++--
.../hbase/tmpl/regionserver/RSStatusTmpl.jamon | 4 +
.../tmpl/regionserver/ReplicationStatusTmpl.jamon | 105 ++++++++++++++++
.../org/apache/hadoop/hbase/master/HMaster.java | 21 ++++
.../hadoop/hbase/regionserver/HRegionServer.java | 16 +++
.../hbase/regionserver/ReplicationService.java | 2 +-
.../regionserver/ReplicationSourceService.java | 6 +
.../replication/regionserver/MetricsSource.java | 37 ++++--
.../replication/regionserver/ReplicationLoad.java | 33 +++--
.../regionserver/ReplicationSource.java | 44 +++++++
.../regionserver/ReplicationSourceInterface.java | 6 +
.../ReplicationSourceWALReaderThread.java | 11 +-
.../regionserver/ReplicationStatus.java | 135 +++++++++++++++++++++
.../hbase/master/TestGetReplicationLoad.java | 133 ++++++++++++++++++++
.../hbase/replication/ReplicationSourceDummy.java | 8 ++
.../hbase/replication/TestReplicationBase.java | 1 +
.../replication/TestReplicationMetricsforUI.java | 105 ++++++++++++++++
18 files changed, 757 insertions(+), 38 deletions(-)
create mode 100644
hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/regionserver/ReplicationStatusTmpl.jamon
create mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationStatus.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestGetReplicationLoad.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationMetricsforUI.java