public static enum OrderedPartitionedKVOutputConfig.SorterImpl extends Enum<OrderedPartitionedKVOutputConfig.SorterImpl>
Enum Constant and Description |
---|
LEGACY
Legacy sorter implementation based on Hadoop MapReduce shuffle impl.
|
PIPELINED
Pipeline sorter - a more efficient sorter that supports > 2 GB sort buffers
|
Modifier and Type | Method and Description |
---|---|
static OrderedPartitionedKVOutputConfig.SorterImpl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderedPartitionedKVOutputConfig.SorterImpl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderedPartitionedKVOutputConfig.SorterImpl LEGACY
public static final OrderedPartitionedKVOutputConfig.SorterImpl PIPELINED
public static OrderedPartitionedKVOutputConfig.SorterImpl[] values()
for (OrderedPartitionedKVOutputConfig.SorterImpl c : OrderedPartitionedKVOutputConfig.SorterImpl.values()) System.out.println(c);
public static OrderedPartitionedKVOutputConfig.SorterImpl 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 © 2016 Apache Software Foundation. All rights reserved.