HBASE-16214 Add in a UI description for the Replication Table
Signed-off-by: Elliott Clark <eclark@apache.org>
This commit is contained in:
parent
8cfaa0e721
commit
90ba723dc6
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue