@PublicEvolving public static enum ExecutionConfigOptions.SinkKeyedShuffle extends Enum<ExecutionConfigOptions.SinkKeyedShuffle>
Enum Constant and Description |
---|
AUTO
Auto add keyed shuffle when the sink's parallelism differs from upstream operator.
|
FORCE
Add keyed shuffle in any case except single parallelism.
|
NONE
No keyed shuffle will be added for sink.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionConfigOptions.SinkKeyedShuffle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionConfigOptions.SinkKeyedShuffle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionConfigOptions.SinkKeyedShuffle NONE
public static final ExecutionConfigOptions.SinkKeyedShuffle AUTO
public static final ExecutionConfigOptions.SinkKeyedShuffle FORCE
public static ExecutionConfigOptions.SinkKeyedShuffle[] values()
for (ExecutionConfigOptions.SinkKeyedShuffle c : ExecutionConfigOptions.SinkKeyedShuffle.values()) System.out.println(c);
public static ExecutionConfigOptions.SinkKeyedShuffle 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–2024 The Apache Software Foundation. All rights reserved.