blob: 31a5aad64f92696ef4e7672f4254b6d5fe22246d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.wayang.iejoin.operators;
import org.apache.wayang.core.function.TransformationDescriptor;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.wayangplan.ExecutionOperator;
import org.apache.wayang.core.platform.ChannelDescriptor;
import org.apache.wayang.core.platform.ChannelInstance;
import org.apache.wayang.core.platform.lineage.ExecutionLineageNode;
import org.apache.wayang.core.types.DataSetType;
import org.apache.wayang.core.util.Tuple;
import org.apache.wayang.iejoin.data.Data;
import org.apache.wayang.iejoin.operators.java_helpers.BitSetJoin;
import org.apache.wayang.iejoin.operators.java_helpers.DataComparator;
import org.apache.wayang.iejoin.operators.java_helpers.extractData;
import org.apache.wayang.java.channels.CollectionChannel;
import org.apache.wayang.java.channels.JavaChannelInstance;
import org.apache.wayang.java.channels.StreamChannel;
import org.apache.wayang.java.execution.JavaExecutor;
import org.apache.wayang.java.operators.JavaExecutionOperator;
import scala.Tuple2;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* Java implementation of the {@link IEJoinOperator}.
*/
public class JavaIEJoinOperator<Type0 extends Comparable<Type0>, Type1 extends Comparable<Type1>, Input>
extends IEJoinOperator<Type0, Type1, Input>
implements JavaExecutionOperator {
/**
* Creates a new instance.
*/
public JavaIEJoinOperator(DataSetType<Input> inputType0, DataSetType<Input> inputType1,
TransformationDescriptor<Input, Type0> get0Pivot, TransformationDescriptor<Input, Type0> get1Pivot, IEJoinMasterOperator.JoinCondition cond0,
TransformationDescriptor<Input, Type1> get0Ref, TransformationDescriptor<Input, Type1> get1Ref, IEJoinMasterOperator.JoinCondition cond1) {
super(inputType0, inputType1, get0Pivot, get1Pivot, cond0, get0Ref, get1Ref, cond1);
}
@Override
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
JavaExecutor javaExecutor,
OptimizationContext.OperatorContext operatorContext) {
StreamChannel.Instance outputChannel = (StreamChannel.Instance) outputs[0];
Stream<Input> stream0;
Stream<Input> stream1;
if (inputs[0] instanceof CollectionChannel.Instance) {
final Collection<Input> collection = ((CollectionChannel.Instance) inputs[0]).provideCollection();
stream0 = collection.stream();
stream1 = ((JavaChannelInstance) inputs[1]).provideStream();
} else if (inputs[1] instanceof CollectionChannel.Instance) {
stream0 = ((JavaChannelInstance) inputs[0]).provideStream();
final Collection<Input> collection = ((CollectionChannel.Instance) inputs[1]).provideCollection();
stream1 = collection.stream();
} else {
// Fallback: Materialize one side.
final Collection<Input> collection = ((JavaChannelInstance) inputs[0]).<Input>provideStream().collect(Collectors.toList());
stream0 = collection.stream();
stream1 = ((JavaChannelInstance) inputs[1]).provideStream();
}
final Function<Input, Type0> get0Pivot_ = javaExecutor.getCompiler().compile(this.get0Pivot);
final Function<Input, Type0> get1Pivot_ = javaExecutor.getCompiler().compile(this.get1Pivot);
final Function<Input, Type1> get0Ref_ = javaExecutor.getCompiler().compile(this.get0Ref);
final Function<Input, Type1> get1Ref_ = javaExecutor.getCompiler().compile(this.get1Ref);
Object[] stream0R = stream0.toArray();
Object[] stream1R = stream1.toArray();
ArrayList<Tuple2<Data<Type0, Type1>, Input>> list0 = new ArrayList<Tuple2<Data<Type0, Type1>, Input>>();
ArrayList<Tuple2<Data<Type0, Type1>, Input>> list1 = new ArrayList<Tuple2<Data<Type0, Type1>, Input>>();
for (int i = 0; i < stream0R.length; i++) {
list0.add(new Tuple2<Data<Type0, Type1>, Input>(new extractData<Type0, Type1, Input>(get0Pivot_, get0Ref_).call((Input) stream0R[i]), (Input) stream0R[i]));
}
for (int i = 0; i < stream1R.length; i++) {
list1.add(new Tuple2<Data<Type0, Type1>, Input>(new extractData<Type0, Type1, Input>(get1Pivot_, get1Ref_).call((Input) stream1R[i]), (Input) stream1R[i]));
}
Collections.sort(list0, new DataComparator<Type0, Type1, Input>(list1ASC, list1ASCSec));
Collections.sort(list1, new DataComparator<Type0, Type1, Input>(list2ASC, list2ASCSec));
long partCount = list0.size();
long partCount2 = list1.size();
// count starting point for rdd2
long cnt2 = partCount + 1;
// Give unique ID for rdd1 & rdd2
for (int i = 0; i < partCount; i++) {
list0.get(i)._1().setRowID(i);
}
for (int i = 0; i < partCount2; i++) {
list1.get(i)._1().setRowID(i + cnt2);
}
ArrayList<Tuple2<Input, Input>> result = new BitSetJoin<Type0, Type1, Input>(list1ASC, list2ASC,
list1ASCSec, list2ASCSec, equalReverse, false, cond0).call(list0, list1);
ArrayList<org.apache.wayang.basic.data.Tuple2<Input, Input>> result2 = new ArrayList<>();
for (Tuple2<Input, Input> t : result) {
result2.add(new org.apache.wayang.basic.data.Tuple2<>(t._1(), t._2()));
}
outputChannel.accept(result2);
return ExecutionOperator.modelEagerExecution(inputs, outputs, operatorContext);
}
@Override
protected ExecutionOperator createCopy() {
return new JavaIEJoinOperator<>(this.getInputType0(), this.getInputType1(),
get0Pivot, get1Pivot, cond0, get0Ref, get1Ref, cond1);
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
assert index <= this.getNumInputs() || (index == 0 && this.getNumInputs() == 0);
return Arrays.asList(CollectionChannel.DESCRIPTOR, StreamChannel.DESCRIPTOR);
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
assert index <= this.getNumOutputs() || (index == 0 && this.getNumOutputs() == 0);
return Collections.singletonList(StreamChannel.DESCRIPTOR);
}
}