blob: 4bc2ba9f3b8fb687c275e2c058d49c4a78f94b1b [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.common.functions.MapFunction;
import org.apache.flink.api.java.DataSet;
import org.apache.wayang.basic.channels.FileChannel;
import org.apache.wayang.basic.data.Tuple2;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.wayangplan.ExecutionOperator;
import org.apache.wayang.core.plan.wayangplan.UnarySink;
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.flink.channels.DataSetChannel;
import org.apache.wayang.flink.execution.FlinkExecutor;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Created by bertty on 31-10-17.
*/
public class FlinkTsvFileSink<Type extends Tuple2<?, ?>> extends UnarySink<Type> implements FlinkExecutionOperator {
private final String targetPath;
public FlinkTsvFileSink(DataSetType<Type> type) {
this(null, type);
}
public FlinkTsvFileSink(String targetPath, DataSetType<Type> type) {
super(type);
assert type.equals(DataSetType.createDefault(Tuple2.class)) :
String.format("Illegal type for %s: %s", this, type);
this.targetPath = targetPath;
}
@Override
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
FlinkExecutor flinkExecutor,
OptimizationContext.OperatorContext operatorContext) {
assert inputs.length == this.getNumInputs();
final FileChannel.Instance output = (FileChannel.Instance) outputs[0];
final String targetPath = output.addGivenOrTempPath(this.targetPath, flinkExecutor.getConfiguration());
final DataSetChannel.Instance input = (DataSetChannel.Instance) inputs[0];
DataSet<String> map = input.<Type>provideDataSet()
.map(new MapFunction<Type, String>() {
private Type dataQuantum;
@Override
public String map(Type dataQuantum) throws Exception {
this.dataQuantum = dataQuantum;
Tuple2 tuple2 = (Tuple2) dataQuantum;
return String.valueOf(tuple2.field0) + '\t' + String.valueOf(tuple2.field1); }
}).setParallelism(flinkExecutor.getNumDefaultPartitions());
map.writeAsText(targetPath).setParallelism(1);
return ExecutionOperator.modelEagerExecution(inputs, outputs, operatorContext);
}
@Override
protected ExecutionOperator createCopy() {
return new FlinkTsvFileSink<>(this.targetPath, this.getType());
}
@Override
public String getLoadProfileEstimatorConfigurationKey() {
return "wayang.flink.tsvfilesink.load";
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
return Arrays.asList(DataSetChannel.DESCRIPTOR);
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
return Collections.singletonList(FileChannel.HDFS_TSV_DESCRIPTOR);
}
@Override
public boolean containsAction() {
return true;
}
}