From a8237fe0d57ad30b385efbecd1b081209d587eef Mon Sep 17 00:00:00 2001 From: Toshihiro Suzuki Date: Fri, 23 Mar 2018 12:37:09 +0900 Subject: [PATCH] HBASE-20261 Table page (table.jsp) in Master UI does not show replicaIds for hbase meta table --- hbase-server/src/main/resources/hbase-webapps/master/table.jsp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp index e52f33a..a992cc3 100644 --- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp +++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp @@ -245,6 +245,13 @@ if ( fqtn != null ) { <%= locality%> <%= escapeXml(Bytes.toString(meta.getStartKey())) %> <%= escapeXml(Bytes.toString(meta.getEndKey())) %> +<% + if (withReplica) { +%> + <%= meta.getReplicaId() %> +<% + } +%> <% } %> <%} %> -- 2.10.1 (Apple Git-78)