public static enum ExecEdge.ShuffleType extends Enum<ExecEdge.ShuffleType>
Enum Constant and Description |
---|
ANY
Any type of shuffle is OK when passing through this edge.
|
BROADCAST
Full records are provided for each parallelism of the target node.
|
HASH
Records are shuffle by hash when passing through this edge.
|
SINGLETON
The parallelism of the target node must be 1.
|
UNKNOWN
Unknown shuffle type, will be filled out in the future.
|
Modifier and Type | Method and Description |
---|---|
static ExecEdge.ShuffleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecEdge.ShuffleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecEdge.ShuffleType ANY
public static final ExecEdge.ShuffleType HASH
public static final ExecEdge.ShuffleType BROADCAST
public static final ExecEdge.ShuffleType SINGLETON
public static final ExecEdge.ShuffleType UNKNOWN
public static ExecEdge.ShuffleType[] values()
for (ExecEdge.ShuffleType c : ExecEdge.ShuffleType.values()) System.out.println(c);
public static ExecEdge.ShuffleType 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 © 2014–2021 The Apache Software Foundation. All rights reserved.