HDFS-4932. Avoid a wide line on the name node webUI if we have more Journal nodes. Contributed by Fengdong Yu.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1497141 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris Nauroth 2013-06-26 22:20:31 +00:00
parent 84b28cbdfa
commit ca1058b27a
2 changed files with 27 additions and 3 deletions

View File

@ -414,6 +414,9 @@ Release 2.1.0-beta - 2013-07-02
HDFS-4772. Add number of children in HdfsFileStatus. (brandonli) HDFS-4772. Add number of children in HdfsFileStatus. (brandonli)
HDFS-4932. Avoid a wide line on the name node webUI if we have more Journal
nodes. (Fengdong Yu via cnauroth)
OPTIMIZATIONS OPTIMIZATIONS
BUG FIXES BUG FIXES

View File

@ -249,9 +249,30 @@ void generateJournalReport(JspWriter out, NameNode nn,
+ "<thead><tr><td><b>Journal Manager</b></td><td><b>State</b></td></tr></thead>"); + "<thead><tr><td><b>Journal Manager</b></td><td><b>State</b></td></tr></thead>");
for (JournalAndStream jas : log.getJournals()) { for (JournalAndStream jas : log.getJournals()) {
out.print("<tr>"); out.print("<tr>");
out.print("<td>" + jas.getManager()); out.print("<td>");
if (jas.isRequired()) {
out.print(" [required]"); /**
* Insert a line break every 3 journal nodes to avoid a very wide line.
*/
JournalManager manager = jas.getManager();
if (null != manager) {
String[] managers = manager.toString().split(",");
for (int i = 0; i < managers.length; ++i) {
out.print(managers[i]);
if (i < managers.length - 1) {
out.print(",");
}
if ((i+1) % 3 == 0) {
out.print("<br/>");
}
}
if (jas.isRequired()) {
out.print(" [required]");
}
} }
out.print("</td><td>"); out.print("</td><td>");