eu.stratosphere.pact.runtime.task.JoinWithSolutionSetSecondDriver 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 eu.stratosphere.api.common.functions.GenericJoiner;
import eu.stratosphere.api.common.typeutils.TypeComparator;
import eu.stratosphere.api.common.typeutils.TypeComparatorFactory;
import eu.stratosphere.api.common.typeutils.TypePairComparator;
import eu.stratosphere.api.common.typeutils.TypePairComparatorFactory;
import eu.stratosphere.api.common.typeutils.TypeSerializer;
import eu.stratosphere.pact.runtime.hash.CompactingHashTable;
import eu.stratosphere.pact.runtime.iterative.concurrent.SolutionSetBroker;
import eu.stratosphere.pact.runtime.iterative.task.AbstractIterativePactTask;
import eu.stratosphere.pact.runtime.task.util.TaskConfig;
import eu.stratosphere.util.Collector;
import eu.stratosphere.util.MutableObjectIterator;
public class JoinWithSolutionSetSecondDriver implements ResettablePactDriver, OT> {
private PactTaskContext, OT> taskContext;
private CompactingHashTable hashTable;
private TypeComparator probeSideComparator;
private TypePairComparator pairComparator;
private IT2 solutionSideRecord;
private IT1 probeSideRecord;
protected volatile boolean running;
// --------------------------------------------------------------------------------------------
@Override
public void setup(PactTaskContext, OT> context) {
this.taskContext = context;
this.running = true;
}
@Override
public int getNumberOfInputs() {
return 1;
}
@Override
public Class> getStubType() {
@SuppressWarnings("unchecked")
final Class> clazz = (Class>) (Class>) GenericJoiner.class;
return clazz;
}
@Override
public boolean requiresComparatorOnInput() {
return true;
}
@Override
public boolean isInputResettable(int inputNum) {
if (inputNum < 0 || inputNum > 1) {
throw new IndexOutOfBoundsException();
}
// from the perspective of the task that runs this operator, there is only one input, which is not resettable
// we implement the resettable interface only in order to avoid that this class is re-instantiated for
// every iterations
return false;
}
// --------------------------------------------------------------------------------------------
@Override
@SuppressWarnings("unchecked")
public void initialize() throws Exception {
// grab a handle to the hash table from the iteration broker
if (taskContext instanceof AbstractIterativePactTask) {
AbstractIterativePactTask, ?> iterativeTaskContext = (AbstractIterativePactTask, ?>) taskContext;
String identifier = iterativeTaskContext.brokerKey();
this.hashTable = (CompactingHashTable) SolutionSetBroker.instance().get(identifier);
} else {
throw new Exception("The task context of this driver is no iterative task context.");
}
TaskConfig config = taskContext.getTaskConfig();
ClassLoader classLoader = taskContext.getUserCodeClassLoader();
TypeSerializer solutionSetSerializer = this.hashTable.getBuildSideSerializer();
TypeSerializer probeSideSerializer = taskContext.getInputSerializer(0).getSerializer();
TypeComparatorFactory probeSideComparatorFactory = config.getDriverComparator(0, classLoader);
TypeComparator solutionSetComparator = this.hashTable.getBuildSideComparator().duplicate();
this.probeSideComparator = probeSideComparatorFactory.createComparator();
solutionSideRecord = solutionSetSerializer.createInstance();
probeSideRecord = probeSideSerializer.createInstance();
TypePairComparatorFactory factory = taskContext.getTaskConfig().getPairComparatorFactory(taskContext.getUserCodeClassLoader());
pairComparator = factory.createComparator12(this.probeSideComparator, solutionSetComparator);
}
@Override
public void prepare() {
// nothing to prepare in each iteration
// later, if we support out-of-core operation, we need to put the code in here
// that brings the initial in-memory partitions into memory
}
@Override
public void run() throws Exception {
final GenericJoiner joinFunction = taskContext.getStub();
final Collector collector = taskContext.getOutputCollector();
IT2 buildSideRecord = this.solutionSideRecord;
IT1 probeSideRecord = this.probeSideRecord;
final CompactingHashTable join = hashTable;
final MutableObjectIterator probeSideInput = taskContext.getInput(0);
final CompactingHashTable.HashTableProber prober = join.getProber(probeSideComparator, pairComparator);
while (this.running && ((probeSideRecord = probeSideInput.next(probeSideRecord)) != null)) {
if (prober.getMatchFor(probeSideRecord, buildSideRecord)) {
joinFunction.join(probeSideRecord, buildSideRecord, collector);
} else {
joinFunction.join(probeSideRecord, null, collector);
}
}
}
@Override
public void cleanup() {}
@Override
public void reset() {}
@Override
public void teardown() {
// hash table is torn down by the iteration head task
}
@Override
public void cancel() {
this.running = false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy