blob: 916f1c0eec0810eac06d52cca61336c26360e681 [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.spark.operators;
import org.apache.wayang.basic.operators.RepeatOperator;
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.spark.channels.RddChannel;
import org.apache.wayang.spark.execution.SparkExecutor;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Spark implementation of the {@link RepeatOperator}.
*/
public class SparkRepeatOperator<Type>
extends RepeatOperator<Type>
implements SparkExecutionOperator {
/**
* Keeps track of the current iteration number.
*/
private int iterationCounter;
public SparkRepeatOperator(int numIterations, DataSetType<Type> type) {
super(numIterations, type);
}
public SparkRepeatOperator(RepeatOperator<Type> that) {
super(that);
}
@Override
@SuppressWarnings("unchecked")
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
SparkExecutor sparkExecutor,
OptimizationContext.OperatorContext operatorContext) {
assert inputs.length == this.getNumInputs();
assert outputs.length == this.getNumOutputs();
ExecutionLineageNode executionLineageNode = new ExecutionLineageNode(operatorContext);
executionLineageNode.addAtomicExecutionFromOperatorContext();
RddChannel.Instance iterationInput;
switch (this.getState()) {
case NOT_STARTED:
assert inputs[INITIAL_INPUT_INDEX] != null;
iterationInput = (RddChannel.Instance) inputs[INITIAL_INPUT_INDEX];
this.iterationCounter = 0;
break;
case RUNNING:
assert inputs[ITERATION_INPUT_INDEX] != null;
iterationInput = (RddChannel.Instance) inputs[ITERATION_INPUT_INDEX];
this.iterationCounter++;
break;
default:
throw new IllegalStateException(String.format("%s is finished, yet executed.", this));
}
if (this.iterationCounter >= this.getNumIterations()) {
// final loop output
sparkExecutor.forward(iterationInput, outputs[FINAL_OUTPUT_INDEX]);
outputs[ITERATION_OUTPUT_INDEX] = null;
this.setState(State.FINISHED);
} else {
outputs[FINAL_OUTPUT_INDEX] = null;
sparkExecutor.forward(iterationInput, outputs[ITERATION_OUTPUT_INDEX]);
this.setState(State.RUNNING);
}
return executionLineageNode.collectAndMark();
}
@Override
protected ExecutionOperator createCopy() {
return new SparkRepeatOperator<>(this);
}
@Override
public String getLoadProfileEstimatorConfigurationKey() {
return "wayang.spark.repeat.load";
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
assert index <= this.getNumInputs() || (index == 0 && this.getNumInputs() == 0);
switch (index) {
case INITIAL_INPUT_INDEX:
case ITERATION_INPUT_INDEX:
return Arrays.asList(RddChannel.UNCACHED_DESCRIPTOR, RddChannel.CACHED_DESCRIPTOR);
default:
throw new IllegalStateException(String.format("%s has no %d-th input.", this, index));
}
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
assert index <= this.getNumOutputs() || (index == 0 && this.getNumOutputs() == 0);
return Collections.singletonList(RddChannel.UNCACHED_DESCRIPTOR);
// TODO: In this specific case, the actual output Channel is context-sensitive because we could forward Streams/Collections.
}
@Override
public boolean containsAction() {
return false;
}
}