I1 - The type of the first input DataSet of the CoGroup transformation.I2 - The type of the second input DataSet of the CoGroup transformation.OUT - The type of the result of the CoGroup transformation.@Public public class CoGroupOperator<I1,I2,OUT> extends TwoInputUdfOperator<I1,I2,OUT,CoGroupOperator<I1,I2,OUT>>
DataSet that is the result of a CoGroup transformation.DataSet| Modifier and Type | Class and Description |
|---|---|
static class |
CoGroupOperator.CoGroupOperatorSets<I1,I2>
Intermediate step of a CoGroup transformation.
|
minResources, name, parallelism, preferredResources| Constructor and Description |
|---|
CoGroupOperator(DataSet<I1> input1,
DataSet<I2> input2,
org.apache.flink.api.common.operators.Keys<I1> keys1,
org.apache.flink.api.common.operators.Keys<I2> keys2,
org.apache.flink.api.common.functions.CoGroupFunction<I1,I2,OUT> function,
org.apache.flink.api.common.typeinfo.TypeInformation<OUT> returnType,
List<org.apache.commons.lang3.tuple.Pair<Integer,org.apache.flink.api.common.operators.Order>> groupSortKeyOrderFirst,
List<org.apache.commons.lang3.tuple.Pair<Integer,org.apache.flink.api.common.operators.Order>> groupSortKeyOrderSecond,
org.apache.flink.api.common.functions.Partitioner<?> customPartitioner,
String defaultName) |
CoGroupOperator(DataSet<I1> input1,
DataSet<I2> input2,
org.apache.flink.api.common.operators.Keys<I1> keys1,
org.apache.flink.api.common.operators.Keys<I2> keys2,
org.apache.flink.api.common.functions.CoGroupFunction<I1,I2,OUT> function,
org.apache.flink.api.common.typeinfo.TypeInformation<OUT> returnType,
org.apache.flink.api.common.functions.Partitioner<?> customPartitioner,
String defaultName) |
| Modifier and Type | Method and Description |
|---|---|
protected org.apache.flink.api.common.functions.CoGroupFunction<I1,I2,OUT> |
getFunction() |
protected org.apache.flink.api.common.operators.Keys<I1> |
getKeys1() |
protected org.apache.flink.api.common.operators.Keys<I2> |
getKeys2() |
org.apache.flink.api.common.functions.Partitioner<?> |
getPartitioner()
Gets the custom partitioner used by this join, or
null, if none is set. |
org.apache.flink.api.common.operators.DualInputSemanticProperties |
getSemanticProperties()
Gets the semantic properties that have been set for the user-defined functions (UDF).
|
protected org.apache.flink.api.common.operators.base.CoGroupOperatorBase<?,?,OUT,?> |
translateToDataFlow(org.apache.flink.api.common.operators.Operator<I1> input1,
org.apache.flink.api.common.operators.Operator<I2> input2)
Translates this java API operator into a common API operator with two inputs.
|
CoGroupOperator<I1,I2,OUT> |
withPartitioner(org.apache.flink.api.common.functions.Partitioner<?> partitioner)
Sets a custom partitioner for the CoGroup operation.
|
extractSemanticAnnotationsFromUdf, getAnalyzedUdfSemanticsFlag, getBroadcastSets, getParameters, returns, returns, returns, setAnalyzedUdfSemanticsFlag, setSemanticProperties, udfWithForwardedFieldsFirstAnnotation, udfWithForwardedFieldsSecondAnnotation, withBroadcastSet, withForwardedFieldsFirst, withForwardedFieldsSecond, withParametersgetInput1, getInput1Type, getInput2, getInput2TypegetMinResources, getName, getParallelism, getPreferredResources, getResultType, name, setParallelismaggregate, checkSameExecutionContext, clean, coGroup, collect, combineGroup, count, cross, crossWithHuge, crossWithTiny, distinct, distinct, distinct, distinct, fillInType, filter, first, flatMap, fullOuterJoin, fullOuterJoin, getExecutionEnvironment, getType, groupBy, groupBy, groupBy, iterate, iterateDelta, join, join, joinWithHuge, joinWithTiny, leftOuterJoin, leftOuterJoin, map, mapPartition, max, maxBy, min, minBy, output, partitionByHash, partitionByHash, partitionByHash, partitionByRange, partitionByRange, partitionByRange, partitionCustom, partitionCustom, partitionCustom, print, print, printOnTaskManager, printToErr, printToErr, project, rebalance, reduce, reduceGroup, rightOuterJoin, rightOuterJoin, runOperation, sortPartition, sortPartition, sortPartition, sum, union, write, write, writeAsCsv, writeAsCsv, writeAsCsv, writeAsCsv, writeAsFormattedText, writeAsFormattedText, writeAsText, writeAsTextpublic CoGroupOperator(DataSet<I1> input1, DataSet<I2> input2, org.apache.flink.api.common.operators.Keys<I1> keys1, org.apache.flink.api.common.operators.Keys<I2> keys2, org.apache.flink.api.common.functions.CoGroupFunction<I1,I2,OUT> function, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> returnType, org.apache.flink.api.common.functions.Partitioner<?> customPartitioner, String defaultName)
public CoGroupOperator(DataSet<I1> input1, DataSet<I2> input2, org.apache.flink.api.common.operators.Keys<I1> keys1, org.apache.flink.api.common.operators.Keys<I2> keys2, org.apache.flink.api.common.functions.CoGroupFunction<I1,I2,OUT> function, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> returnType, List<org.apache.commons.lang3.tuple.Pair<Integer,org.apache.flink.api.common.operators.Order>> groupSortKeyOrderFirst, List<org.apache.commons.lang3.tuple.Pair<Integer,org.apache.flink.api.common.operators.Order>> groupSortKeyOrderSecond, org.apache.flink.api.common.functions.Partitioner<?> customPartitioner, String defaultName)
protected org.apache.flink.api.common.functions.CoGroupFunction<I1,I2,OUT> getFunction()
getFunction in class TwoInputUdfOperator<I1,I2,OUT,CoGroupOperator<I1,I2,OUT>>public org.apache.flink.api.common.operators.DualInputSemanticProperties getSemanticProperties()
UdfOperatorgetSemanticProperties in interface UdfOperator<CoGroupOperator<I1,I2,OUT>>getSemanticProperties in class TwoInputUdfOperator<I1,I2,OUT,CoGroupOperator<I1,I2,OUT>>@Internal protected org.apache.flink.api.common.operators.Keys<I1> getKeys1()
@Internal protected org.apache.flink.api.common.operators.Keys<I2> getKeys2()
public CoGroupOperator<I1,I2,OUT> withPartitioner(org.apache.flink.api.common.functions.Partitioner<?> partitioner)
NOTE: A custom partitioner can only be used with single-field CoGroup keys, not with composite CoGroup keys.
partitioner - The custom partitioner to be used.public org.apache.flink.api.common.functions.Partitioner<?> getPartitioner()
null, if none is set.@Internal protected org.apache.flink.api.common.operators.base.CoGroupOperatorBase<?,?,OUT,?> translateToDataFlow(org.apache.flink.api.common.operators.Operator<I1> input1, org.apache.flink.api.common.operators.Operator<I2> input2)
TwoInputOperatortranslateToDataFlow in class TwoInputOperator<I1,I2,OUT,CoGroupOperator<I1,I2,OUT>>input1 - The first input of the operation, as a common API operator.input2 - The second input of the operation, as a common API operator.Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.