Package org.apache.hadoop.mapred
Enum Class TaskCompletionEvent.Status
- All Implemented Interfaces:
Serializable,Comparable<TaskCompletionEvent.Status>,Constable
- Enclosing class:
- TaskCompletionEvent
@Public
@Stable
public static enum TaskCompletionEvent.Status
extends Enum<TaskCompletionEvent.Status>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TaskCompletionEvent.StatusReturns the enum constant of this class with the specified name.static TaskCompletionEvent.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FAILED
Task Event Attempt failed but there are attempts remaining. -
KILLED
Task Event was killed. -
SUCCEEDED
Task Event was successful. -
OBSOLETE
Used to Override a previously successful event status. Example: Map attempt runs and a SUCCEEDED event is sent. Later a task is retroactively failed due to excessive fetch failure during shuffle phase. When the retroactive attempt failure occurs, an OBSOLETE event is sent for the map attempt indicating the prior event is no longer valid. -
TIPFAILED
Task Event attempt failed and no further attempts exist. reached MAX attempts. When a reducer receives a TIPFAILED event it gives up trying to shuffle data from that map task.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-