[
https://issues.apache.org/jira/browse/MAPREDUCE-1980?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Amar Kamat updated MAPREDUCE-1980:
----------------------------------
Summary: TaskAttemptUnsuccessfulCompletionEvent.java incorrectly logs
MAP_ATTEMPT_KILLED as event type for reduce tasks (was:
TaskAttemptUnsuccessfulCompletionEvent.java incorrectly logs
MAP_ATTEMPT_FINISHED as event type for reduce tasks)
Description:
TaskAttemptUnsuccessfulCompletionEvent is used to log unsuccessful map and
reduce task attempts to JobHistory. Following is the implementation of
getEventType() method of TaskAttemptUnsuccessfulCompletionEvent
/** Get the event type */
public EventType getEventType() {
return EventType.MAP_ATTEMPT_KILLED;
}
was:
TaskAttemptUnsuccessfulCompletionEvent is used to log unsuccessful map and
reduce task attempts to JobHistory. Following is the implementation of
getEventType() method of TaskAttemptUnsuccessfulCompletionEvent
/** Get the event type */
public EventType getEventType() {
return EventType.MAP_ATTEMPT_STARTED;
}
> TaskAttemptUnsuccessfulCompletionEvent.java incorrectly logs
> MAP_ATTEMPT_KILLED as event type for reduce tasks
> --------------------------------------------------------------------------------------------------------------
>
> Key: MAPREDUCE-1980
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-1980
> Project: Hadoop Map/Reduce
> Issue Type: Bug
> Reporter: Amar Kamat
> Assignee: Amar Kamat
>
> TaskAttemptUnsuccessfulCompletionEvent is used to log unsuccessful map and
> reduce task attempts to JobHistory. Following is the implementation of
> getEventType() method of TaskAttemptUnsuccessfulCompletionEvent
> /** Get the event type */
> public EventType getEventType() {
> return EventType.MAP_ATTEMPT_KILLED;
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.