eu.stratosphere.pact.runtime.task.MatchDriver 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.pact.runtime.task;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import eu.stratosphere.api.common.functions.GenericJoiner;
import eu.stratosphere.api.common.typeutils.TypeComparator;
import eu.stratosphere.api.common.typeutils.TypePairComparatorFactory;
import eu.stratosphere.api.common.typeutils.TypeSerializer;
import eu.stratosphere.nephele.services.iomanager.IOManager;
import eu.stratosphere.nephele.services.memorymanager.MemoryManager;
import eu.stratosphere.pact.runtime.hash.BuildFirstHashMatchIterator;
import eu.stratosphere.pact.runtime.hash.BuildSecondHashMatchIterator;
import eu.stratosphere.pact.runtime.sort.MergeMatchIterator;
import eu.stratosphere.pact.runtime.task.util.JoinTaskIterator;
import eu.stratosphere.pact.runtime.task.util.TaskConfig;
import eu.stratosphere.util.Collector;
import eu.stratosphere.util.MutableObjectIterator;
/**
* Match task which is executed by a Nephele task manager. The task has two inputs and one or multiple outputs.
* It is provided with a JoinFunction implementation.
*
* The MatchTask matches all pairs of records that share the same key and come from different inputs. Each pair of
* matching records is handed to the match()
method of the JoinFunction.
*
* @see GenericJoiner
*/
public class MatchDriver implements PactDriver, OT> {
protected static final Log LOG = LogFactory.getLog(MatchDriver.class);
protected PactTaskContext, OT> taskContext;
private volatile JoinTaskIterator matchIterator; // the iterator that does the actual matching
protected volatile boolean running;
// ------------------------------------------------------------------------
@Override
public void setup(PactTaskContext, OT> context) {
this.taskContext = context;
this.running = true;
}
@Override
public int getNumberOfInputs() {
return 2;
}
@Override
public Class> getStubType() {
@SuppressWarnings("unchecked")
final Class> clazz = (Class>) (Class>) GenericJoiner.class;
return clazz;
}
@Override
public boolean requiresComparatorOnInput() {
return true;
}
@Override
public void prepare() throws Exception{
final TaskConfig config = this.taskContext.getTaskConfig();
// obtain task manager's memory manager and I/O manager
final MemoryManager memoryManager = this.taskContext.getMemoryManager();
final IOManager ioManager = this.taskContext.getIOManager();
// set up memory and I/O parameters
final long availableMemory = config.getMemoryDriver();
final int numPages = memoryManager.computeNumberOfPages(availableMemory);
// test minimum memory requirements
final DriverStrategy ls = config.getDriverStrategy();
final MutableObjectIterator in1 = this.taskContext.getInput(0);
final MutableObjectIterator in2 = this.taskContext.getInput(1);
// get the key positions and types
final TypeSerializer serializer1 = this.taskContext.getInputSerializer(0).getSerializer();
final TypeSerializer serializer2 = this.taskContext.getInputSerializer(1).getSerializer();
final TypeComparator comparator1 = this.taskContext.getInputComparator(0);
final TypeComparator comparator2 = this.taskContext.getInputComparator(1);
final TypePairComparatorFactory pairComparatorFactory = config.getPairComparatorFactory(
this.taskContext.getUserCodeClassLoader());
if (pairComparatorFactory == null) {
throw new Exception("Missing pair comparator factory for Match driver");
}
// create and return MatchTaskIterator according to provided local strategy.
switch (ls) {
case MERGE:
this.matchIterator = new MergeMatchIterator(in1, in2, serializer1, comparator1,
serializer2, comparator2, pairComparatorFactory.createComparator12(comparator1, comparator2),
memoryManager, ioManager, numPages, this.taskContext.getOwningNepheleTask());
break;
case HYBRIDHASH_BUILD_FIRST:
this.matchIterator = new BuildFirstHashMatchIterator(in1, in2, serializer1, comparator1,
serializer2, comparator2, pairComparatorFactory.createComparator21(comparator1, comparator2),
memoryManager, ioManager, this.taskContext.getOwningNepheleTask(), availableMemory);
break;
case HYBRIDHASH_BUILD_SECOND:
this.matchIterator = new BuildSecondHashMatchIterator(in1, in2, serializer1, comparator1,
serializer2, comparator2, pairComparatorFactory.createComparator12(comparator1, comparator2),
memoryManager, ioManager, this.taskContext.getOwningNepheleTask(), availableMemory);
break;
default:
throw new Exception("Unsupported driver strategy for Match driver: " + ls.name());
}
// open MatchTaskIterator - this triggers the sorting or hash-table building
// and blocks until the iterator is ready
this.matchIterator.open();
if (LOG.isDebugEnabled()) {
LOG.debug(this.taskContext.formatLogString("Match task iterator ready."));
}
}
@Override
public void run() throws Exception {
final GenericJoiner matchStub = this.taskContext.getStub();
final Collector collector = this.taskContext.getOutputCollector();
final JoinTaskIterator matchIterator = this.matchIterator;
while (this.running && matchIterator.callWithNextKey(matchStub, collector));
}
@Override
public void cleanup() throws Exception {
if (this.matchIterator != null) {
this.matchIterator.close();
this.matchIterator = null;
}
}
@Override
public void cancel() {
this.running = false;
if (this.matchIterator != null) {
this.matchIterator.abort();
}
}
}