public enum TaskTerminationCause extends Enum<TaskTerminationCause>
| Enum Constant and Description |
|---|
AM_USERCODE_FAILURE
This vertex failed as its AM usercode (VertexManager/EdgeManager/InputInitializer)
throw Exception
|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
public static final TaskTerminationCause AM_USERCODE_FAILURE
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 nameNullPointerException - if the argument is nullCopyright © 2015 Apache Software Foundation. All rights reserved.