You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Amar Kamat (JIRA)" <ji...@apache.org> on 2009/10/07 08:38:31 UTC

[jira] Updated: (MAPREDUCE-126) Job history analysis showing wrong job runtime

     [ https://issues.apache.org/jira/browse/MAPREDUCE-126?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Amar Kamat updated MAPREDUCE-126:
---------------------------------

    Affects Version/s: 0.20.1
        Fix Version/s: 0.22.0

> Job history analysis showing wrong job runtime
> ----------------------------------------------
>
>                 Key: MAPREDUCE-126
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-126
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>    Affects Versions: 0.20.1
>            Reporter: Amar Kamat
>             Fix For: 0.22.0
>
>
> 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.