From caf4c4b4eecd3a88052dab76e1a09f0c1bb49b75 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 Signed-off-by: Josh Elser --- .../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 86a5a76337d..5fa068ca0ec 100644 --- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp +++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp @@ -269,6 +269,13 @@ if ( fqtn != null ) { <%= locality%> <%= escapeXml(Bytes.toString(meta.getStartKey())) %> <%= escapeXml(Bytes.toString(meta.getEndKey())) %> +<% + if (withReplica) { +%> + <%= meta.getReplicaId() %> +<% + } +%> <% } %> <%} %>