|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TaskTerminationCause>
org.apache.tez.dag.app.dag.TaskTerminationCause
public enum TaskTerminationCause
Represents proximate cause of a Task transition to FAILED or KILLED.
| Enum Constant Summary | |
|---|---|
DAG_KILL
DAG was killed |
|
OTHER_TASK_FAILURE
One of the tasks for the source/destination vertex failed. |
|
OTHER_VERTEX_FAILURE
Other vertex failed causing DAG to fail thus killing the parent vertex |
|
OWN_TASK_FAILURE
One of the tasks of the destination vertex failed. |
|
| Method Summary | |
|---|---|
static TaskTerminationCause |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TaskTerminationCause[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TaskTerminationCause DAG_KILL
public static final TaskTerminationCause OTHER_VERTEX_FAILURE
public static final TaskTerminationCause OTHER_TASK_FAILURE
public static final TaskTerminationCause OWN_TASK_FAILURE
| Method Detail |
|---|
public static TaskTerminationCause[] values()
for (TaskTerminationCause c : TaskTerminationCause.values()) System.out.println(c);
public static TaskTerminationCause valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||