blob: 2485acf04c118f9e0260531a7a1f82cbc874cfc5 [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.flink.operators;
import org.apache.flink.api.java.DataSet;
import org.apache.wayang.basic.operators.TextFileSource;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.optimizer.costs.LoadProfileEstimators;
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.util.Tuple;
import org.apache.wayang.flink.channels.DataSetChannel;
import org.apache.wayang.flink.execution.FlinkExecutor;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
/**
* Provides a {@link Collection} to a Flink job.
*/
public class FlinkTextFileSource extends TextFileSource implements FlinkExecutionOperator {
public FlinkTextFileSource(String inputUrl, String encoding) {
super(inputUrl, encoding);
}
public FlinkTextFileSource(String inputUrl) {
super(inputUrl);
}
/**
* Copies an instance (exclusive of broadcasts).
*
* @param that that should be copied
*/
public FlinkTextFileSource(TextFileSource that) {
super(that);
}
@Override
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
FlinkExecutor flinkExecutor,
OptimizationContext.OperatorContext operatorContext) {
assert inputs.length == this.getNumInputs();
assert outputs.length == this.getNumOutputs();
DataSetChannel.Instance output = (DataSetChannel.Instance) outputs[0];
flinkExecutor.fee.setParallelism(flinkExecutor.getNumDefaultPartitions());
final DataSet<String> dataSet = flinkExecutor.fee.readTextFile(this.getInputUrl()).setParallelism(flinkExecutor.getNumDefaultPartitions());
output.accept(dataSet, flinkExecutor);
ExecutionLineageNode prepareLineageNode = new ExecutionLineageNode(operatorContext);
prepareLineageNode.add(LoadProfileEstimators.createFromSpecification(
"wayang.flink.textfilesource.load.prepare", flinkExecutor.getConfiguration()
));
ExecutionLineageNode mainLineageNode = new ExecutionLineageNode(operatorContext);
mainLineageNode.add(LoadProfileEstimators.createFromSpecification(
"wayang.flink.textfilesource.load.main", flinkExecutor.getConfiguration()
));
output.getLineage().addPredecessor(mainLineageNode);
return prepareLineageNode.collectAndMark();
}
@Override
protected ExecutionOperator createCopy() {
return new FlinkTextFileSource(this.getInputUrl(), this.getEncoding());
}
@Override
public Collection<String> getLoadProfileEstimatorConfigurationKeys() {
return Arrays.asList("wayang.flink.textfilesource.load.prepare", "wayang.flink.textfilesource.load.main");
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
throw new UnsupportedOperationException(String.format("%s does not have input channels.", this));
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
return Arrays.asList(DataSetChannel.DESCRIPTOR, DataSetChannel.DESCRIPTOR_MANY);
}
@Override
public boolean containsAction() {
return false;
}
}