public static enum EdgeProperty.ConcurrentEdgeTriggerType extends Enum<EdgeProperty.ConcurrentEdgeTriggerType>
EdgeProperty.SchedulingType.| Enum Constant and Description |
|---|
SOURCE_TASK_STARTED
trigger tasks scheduling for downstream vertex(es) by "running" event(s) of upstream tasks
this will be fully supported with TEZ-3999
|
SOURCE_VERTEX_CONFIGURED
trigger tasks scheduling for downstream vertex(es) upon upstream being configured
this effectively simultaneously schedules downstream and upstream vertices
connected on both ends of a concurrent edge.
|
| Modifier and Type | Method and Description |
|---|---|
static EdgeProperty.ConcurrentEdgeTriggerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeProperty.ConcurrentEdgeTriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeProperty.ConcurrentEdgeTriggerType SOURCE_VERTEX_CONFIGURED
public static final EdgeProperty.ConcurrentEdgeTriggerType SOURCE_TASK_STARTED
public static EdgeProperty.ConcurrentEdgeTriggerType[] values()
for (EdgeProperty.ConcurrentEdgeTriggerType c : EdgeProperty.ConcurrentEdgeTriggerType.values()) System.out.println(c);
public static EdgeProperty.ConcurrentEdgeTriggerType 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 © 2022 Apache Software Foundation. All rights reserved.