You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ec...@apache.org on 2016/07/12 20:13:34 UTC

hbase git commit: HBASE-16214 Add in a UI description for the Replication Table

Repository: hbase
Updated Branches:
  refs/heads/master 8cfaa0e72 -> 90ba723dc


HBASE-16214 Add in a UI description for the Replication Table

Signed-off-by: Elliott Clark <ec...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/90ba723d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/90ba723d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/90ba723d

Branch: refs/heads/master
Commit: 90ba723dc63571cef14546e9988a76f0adb923aa
Parents: 8cfaa0e
Author: Joseph Hwang <jz...@fb.com>
Authored: Tue Jul 12 09:45:05 2016 -0700
Committer: Elliott Clark <ec...@apache.org>
Committed: Tue Jul 12 12:21:55 2016 -0700

----------------------------------------------------------------------
 .../apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon    | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/90ba723d/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon b/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon
index 056c2d7..d19df21 100644
--- a/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon
+++ b/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon
@@ -387,7 +387,7 @@ AssignmentManager assignmentManager = master.getAssignmentManager();
             description = "The hbase:canary table is used to sniff the write availbility of"
               + " each regionserver.";
         } else if (tableName.equals(AccessControlLists.ACL_TABLE_NAME)){
-            description = "The hbase:acl table holds information about acl";
+            description = "The hbase:acl table holds information about acl.";
         } else if (tableName.equals(VisibilityConstants.LABELS_TABLE_NAME)){
             description = "The hbase:labels table holds information about visibility labels.";
         } else if (tableName.equals(TableName.NAMESPACE_TABLE_NAME)){
@@ -396,7 +396,10 @@ AssignmentManager assignmentManager = master.getAssignmentManager();
             description = "The hbase:quota table holds quota information about number" +
             " or size of requests in a given time frame.";
         } else if (tableName.equals(TableName.valueOf("hbase:rsgroup"))){
-            description = "The hbase:rsgroup table holds information about regionserver groups";
+            description = "The hbase:rsgroup table holds information about regionserver groups.";
+        } else if (tableName.equals(TableName.valueOf("hbase:replication"))) {
+            description = "The hbase:replication table tracks cross cluster replication through " +
+            "WAL file offsets.";
         }
     </%java>
     <td><% description %></td>