PartitionOperator<T> |
DataSet.partitionByHash(int... fields) |
Deprecated.
Hash-partitions a DataSet on the specified key fields.
|
PartitionOperator<T> |
DataSet.partitionByHash(String... fields) |
Deprecated.
Hash-partitions a DataSet on the specified key fields.
|
<K extends Comparable<K>> PartitionOperator<T> |
DataSet.partitionByHash(org.apache.flink.api.java.functions.KeySelector<T,K> keyExtractor) |
Deprecated.
Partitions a DataSet using the specified KeySelector.
|
PartitionOperator<T> |
DataSet.partitionByRange(int... fields) |
Deprecated.
Range-partitions a DataSet on the specified key fields.
|
PartitionOperator<T> |
DataSet.partitionByRange(String... fields) |
Deprecated.
Range-partitions a DataSet on the specified key fields.
|
<K extends Comparable<K>> PartitionOperator<T> |
DataSet.partitionByRange(org.apache.flink.api.java.functions.KeySelector<T,K> keyExtractor) |
Deprecated.
Range-partitions a DataSet using the specified KeySelector.
|
<K> PartitionOperator<T> |
DataSet.partitionCustom(org.apache.flink.api.common.functions.Partitioner<K> partitioner,
int field) |
Deprecated.
Partitions a tuple DataSet on the specified key fields using a custom partitioner.
|
<K> PartitionOperator<T> |
DataSet.partitionCustom(org.apache.flink.api.common.functions.Partitioner<K> partitioner,
String field) |
Deprecated.
Partitions a POJO DataSet on the specified key fields using a custom partitioner.
|
<K extends Comparable<K>> PartitionOperator<T> |
DataSet.partitionCustom(org.apache.flink.api.common.functions.Partitioner<K> partitioner,
org.apache.flink.api.java.functions.KeySelector<T,K> keyExtractor) |
Deprecated.
Partitions a DataSet on the key returned by the selector, using a custom partitioner.
|
PartitionOperator<T> |
DataSet.rebalance() |
Deprecated.
Enforces a re-balancing of the DataSet, i.e., the DataSet is evenly distributed over all
parallel instances of the following task.
|