Class CoGroupOperator<InputType0,InputType1,Key>

java.lang.Object
org.apache.wayang.core.plan.wayangplan.OperatorBase
org.apache.wayang.core.plan.wayangplan.BinaryToUnaryOperator<InputType0,InputType1,Tuple2<Iterable<InputType0>,Iterable<InputType1>>>
org.apache.wayang.basic.operators.CoGroupOperator<InputType0,InputType1,Key>
All Implemented Interfaces:
Serializable, ActualOperator, ElementaryOperator, Operator
Direct Known Subclasses:
FlinkCoGroupOperator, JavaCoGroupOperator, SparkCoGroupOperator

public class CoGroupOperator<InputType0,InputType1,Key> extends BinaryToUnaryOperator<InputType0,InputType1,Tuple2<Iterable<InputType0>,Iterable<InputType1>>>
This operator groups both inputs by some key and then matches groups with the same key. If a key appears in only one of the input datasets, then the according group is matched with an empty group.
See Also: