jobtasks.jsp
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:

网格计算

开发平台:

Java

  1. <%@ page
  2.   contentType="text/html; charset=UTF-8"
  3.   import="javax.servlet.*"
  4.   import="javax.servlet.http.*"
  5.   import="java.io.*"
  6.   import="java.util.*"
  7.   import="org.apache.hadoop.mapred.*"
  8.   import="org.apache.hadoop.util.*"
  9.   import="java.lang.Integer"
  10.   import="java.text.SimpleDateFormat"
  11. %>
  12. <%! static SimpleDateFormat dateFormat = new SimpleDateFormat("d-MMM-yyyy HH:mm:ss") ; %>
  13. <%
  14.   JobTracker tracker = (JobTracker) application.getAttribute("job.tracker");
  15.   String trackerName = 
  16.            StringUtils.simpleHostname(tracker.getJobTrackerMachine());
  17.   String jobid = request.getParameter("jobid");
  18.   if (jobid == null) {
  19.     out.println("<h2>Missing 'jobid'!</h2>");
  20.     return;
  21.   }
  22.   String type = request.getParameter("type");
  23.   String pagenum = request.getParameter("pagenum");
  24.   String state = request.getParameter("state");
  25.   state = (state!=null) ? state : "all";
  26.   int pnum = Integer.parseInt(pagenum);
  27.   int next_page = pnum+1;
  28.   int numperpage = 2000;
  29.   JobID jobidObj = JobID.forName(jobid);
  30.   JobInProgress job = (JobInProgress) tracker.getJob(jobidObj);
  31.   JobProfile profile = (job != null) ? (job.getProfile()) : null;
  32.   JobStatus status = (job != null) ? (job.getStatus()) : null;
  33.   TaskReport[] reports = null;
  34.   int start_index = (pnum - 1) * numperpage;
  35.   int end_index = start_index + numperpage;
  36.   int report_len = 0;
  37.   if ("map".equals(type)) {
  38.     reports = (job != null) ? tracker.getMapTaskReports(jobidObj) : null;
  39.   } else if ("reduce".equals(type)) {
  40.     reports = (job != null) ? tracker.getReduceTaskReports(jobidObj) : null;
  41.   } else if ("cleanup".equals(type)) {
  42.     reports = (job != null) ? tracker.getCleanupTaskReports(jobidObj) : null;
  43.   } else if ("setup".equals(type)) {
  44.     reports = (job != null) ? tracker.getSetupTaskReports(jobidObj) : null;
  45.   }
  46. %>
  47. <html>
  48.   <head>
  49.     <title>Hadoop <%=type%> task list for <%=jobid%> on <%=trackerName%></title>
  50.     <link rel="stylesheet" type="text/css" href="/static/hadoop.css">
  51.   </head>
  52. <body>
  53. <h1>Hadoop <%=type%> task list for 
  54. <a href="jobdetails.jsp?jobid=<%=jobid%>"><%=jobid%></a> on 
  55. <a href="jobtracker.jsp"><%=trackerName%></a></h1>
  56. <%
  57.     if (job == null) {
  58.     out.print("<b>Job " + jobid + " not found.</b><br>n");
  59.     return;
  60.   }
  61.   // Filtering the reports if some filter is specified
  62.   if (!"all".equals(state)) {
  63.     List<TaskReport> filteredReports = new ArrayList<TaskReport>();
  64.     for (int i = 0; i < reports.length; ++i) {
  65.       if (("completed".equals(state) && reports[i].getCurrentStatus() == TIPStatus.COMPLETE) 
  66.           || ("running".equals(state) && reports[i].getCurrentStatus() == TIPStatus.RUNNING) 
  67.           || ("killed".equals(state) && reports[i].getCurrentStatus() == TIPStatus.KILLED) 
  68.           || ("pending".equals(state)  && reports[i].getCurrentStatus() == TIPStatus.PENDING)) {
  69.         filteredReports.add(reports[i]);
  70.       }
  71.     }
  72.     // using filtered reports instead of all the reports
  73.     reports = filteredReports.toArray(new TaskReport[0]);
  74.     filteredReports = null;
  75.   }
  76.   report_len = reports.length;
  77.   
  78.   if (report_len <= start_index) {
  79.     out.print("<b>No such tasks</b>");
  80.   } else {
  81.     out.print("<hr>");
  82.     out.print("<h2>" + Character.toUpperCase(state.charAt(0)) 
  83.               + state.substring(1).toLowerCase() + " Tasks</h2>");
  84.     out.print("<center>");
  85.     out.print("<table border=2 cellpadding="5" cellspacing="2">");
  86.     out.print("<tr><td align="center">Task</td><td>Complete</td><td>Status</td>" +
  87.               "<td>Start Time</td><td>Finish Time</td><td>Errors</td><td>Counters</td></tr>");
  88.     if (end_index > report_len){
  89.         end_index = report_len;
  90.     }
  91.     for (int i = start_index ; i < end_index; i++) {
  92.           TaskReport report = reports[i];
  93.           out.print("<tr><td><a href="taskdetails.jsp?jobid=" + jobid + 
  94.                     "&tipid=" + report.getTaskID() + "">"  + 
  95.                     report.getTaskID() + "</a></td>");
  96.          out.print("<td>" + StringUtils.formatPercent(report.getProgress(),2) +
  97.             ServletUtil.percentageGraph(report.getProgress() * 100f, 80) + "</td>");
  98.          out.print("<td>"  + report.getState() + "<br/></td>");
  99.          out.println("<td>" + StringUtils.getFormattedTimeWithDiff(dateFormat, report.getStartTime(),0) + "<br/></td>");
  100.          out.println("<td>" + StringUtils.getFormattedTimeWithDiff(dateFormat, 
  101.              report.getFinishTime(), report.getStartTime()) + "<br/></td>");
  102.          String[] diagnostics = report.getDiagnostics();
  103.          out.print("<td><pre>");
  104.          for (int j = 0; j < diagnostics.length ; j++) {
  105.              out.println(diagnostics[j]);
  106.          }
  107.          out.println("</pre><br/></td>");
  108.          out.println("<td>" + 
  109.              "<a href="taskstats.jsp?jobid=" + jobid + 
  110.              "&tipid=" + report.getTaskID() +
  111.              "">" + report.getCounters().size() +
  112.              "</a></td></tr>");
  113.     }
  114.     out.print("</table>");
  115.     out.print("</center>");
  116.   }
  117.   if (end_index < report_len) {
  118.     out.print("<div style="text-align:right">" + 
  119.               "<a href="jobtasks.jsp?jobid="+ jobid + "&type=" + type +
  120.               "&pagenum=" + next_page + "&state=" + state +
  121.               "">" + "Next" + "</a></div>");
  122.   }
  123.   if (start_index != 0) {
  124.       out.print("<div style="text-align:right">" + 
  125.                 "<a href="jobtasks.jsp?jobid="+ jobid + "&type=" + type +
  126.                 "&pagenum=" + (pnum -1) + "&state=" + state + "">" + "Prev" + "</a></div>");
  127.   }
  128. %>
  129. <hr>
  130. <a href="jobtracker.jsp">Go back to JobTracker</a><br>
  131. <%
  132. out.println(ServletUtil.htmlFooter());
  133. %>