Job history analysis showing wrong job runtime
----------------------------------------------
Key: HADOOP-5642
URL: https://issues.apache.org/jira/browse/HADOOP-5642
Project: Hadoop Core
Issue Type: Bug
Components: mapred
Reporter: Amar Kamat
Analysis of completed jobs shows wrong runtime. Here is the faulty code
{code:title=analysisjobhistory.jsp|borderStyle=solid}
<b>Finished At : </b> <%=StringUtils.getFormattedTimeWithDiff(dateFormat,
job.getLong(Keys.FINISH_TIME), job.getLong(Keys.LAUNCH_TIME)) %><br/>
{code}
I think it should be
{code:title=analysisjobhistory.jsp|borderStyle=solid}
<b>Finished At : </b> <%=StringUtils.getFormattedTimeWithDiff(dateFormat,
job.getLong(Keys.FINISH_TIME), job.getLong(Keys.SUBMIT_TIME)) %><br/>
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.