Repository: hbase Updated Branches: refs/heads/branch-1 341ee15ed -> b64d5e5f4
HBASE-16026 Master UI should display status of additional ZK switches Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b64d5e5f Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b64d5e5f Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b64d5e5f Branch: refs/heads/branch-1 Commit: b64d5e5f4b436bfa82ec4fdcecc6a73d62bafc7d Parents: 341ee15 Author: Mikhail Antonov <[email protected]> Authored: Wed Jun 15 13:06:52 2016 -0700 Committer: Mikhail Antonov <[email protected]> Committed: Wed Jun 15 13:06:52 2016 -0700 ---------------------------------------------------------------------- .../hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/b64d5e5f/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 2a5bfc7..0ecc131 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 @@ -169,6 +169,20 @@ AssignmentManager assignmentManager = master.getAssignmentManager(); is only expected to be disabled during rolling upgrade scenarios. </div> </%if> + <%if !master.isSplitOrMergeEnabled(Admin.MasterSwitchType.SPLIT) %> + <div class="alert alert-warning"> + Region splits are disabled. This may be the result of HBCK aborting while + running in repair mode. Manually enable splits from the HBase shell, + or re-run HBCK in repair mode. + </div> + </%if> + <%if !master.isSplitOrMergeEnabled(Admin.MasterSwitchType.MERGE) %> + <div class="alert alert-warning"> + Region merges are disabled. This may be the result of HBCK aborting while + running in repair mode. Manually enable merges from the HBase shell, + or re-run HBCK in repair mode. + </div> + </%if> <section> <h2>Region Servers</h2>
