eu.stratosphere.api.java.functions.CoGroupFunction Maven / Gradle / Ivy
/***********************************************************************************************************************
*
* Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu)
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
**********************************************************************************************************************/
package eu.stratosphere.api.java.functions;
import java.util.Iterator;
import eu.stratosphere.api.common.functions.AbstractFunction;
import eu.stratosphere.api.common.functions.GenericCoGrouper;
import eu.stratosphere.util.Collector;
/**
* The abstract base class for CoGroup functions. CoGroup functions combine two data sets by first grouping each data set
* after a key and then "joining" the groups by calling this function with the two sets for each key.
* If a key is present in only one of the two inputs, it may be that one of the groups is empty.
*
* The basic syntax for using CoGoup on two data sets is as follows:
*
* DataSet set1 = ...;
* DataSet set2 = ...;
*
* set1.coGroup(set2).where().equalTo().with(new MyCoGroupFunction());
*
*
* {@code set1} is here considered the first input, {@code set2} the second input.
* The keys can be defined through tuple field positions or key extractors.
* See {@link eu.stratosphere.api.java.operators.Keys} for details.
*
* Some keys may only be contained in one of the two original data sets. In that case, the CoGroup function is invoked
* with in empty input for the side of the data set that did not contain elements with that specific key.
*
* All functions need to be serializable, as defined in {@link java.io.Serializable}.
*
* @param The type of the elements in the first input.
* @param The type of the elements in the second input.
* @param The type of the result elements.
*/
public abstract class CoGroupFunction extends AbstractFunction implements GenericCoGrouper {
private static final long serialVersionUID = 1L;
/**
* The core method of the CoGroupFunction. This method is called for each pair of groups that have the same
* key. The elements of the groups are returned by the respective iterators.
*
* It is possible that one of the two groups is empty, in which case the respective iterator has no elements.
*
* @param first The group from the first input.
* @param second The group from the second input.
* @param out The collector through which to return the result elements.
*
* @throws Exception This method may throw exceptions. Throwing an exception will cause the operation
* to fail and may trigger recovery.
*/
@Override
public abstract void coGroup(Iterator first, Iterator second, Collector out) throws Exception;
}