blob: c912266f9ca25921f8e6db18d426a5db0340cef9 [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.flink.streaming.tests;
import org.apache.flink.api.common.functions.RichMapFunction;
import org.apache.flink.api.java.utils.ParameterTool;
import org.apache.flink.core.fs.FileSystem;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.stream.Collectors;
/**
* End-to-end test program for verifying that files are distributed via BlobServer and later accessible through
* DistribitutedCache. We verify that via uploading file and later on accessing it in map function. To be sure we read
* version read from cache, we delete the initial file.
*/
public class DistributedCacheViaBlobTestProgram {
public static void main(String[] args) throws Exception {
final ParameterTool params = ParameterTool.fromArgs(args);
final String inputFile = params.getRequired("inputFile");
final StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
env.setParallelism(1);
env.registerCachedFile(inputFile.toString(), "test_data", false);
env.fromElements(1)
.map(new TestMapFunction(inputFile))
.writeAsText(params.getRequired("output"), FileSystem.WriteMode.OVERWRITE);
env.execute("Distributed Cache Via Blob Test Program");
}
static class TestMapFunction extends RichMapFunction<Integer, String> {
private String initialPath;
public TestMapFunction(String initialPath) {
this.initialPath = initialPath;
}
@Override
public String map(Integer value) throws Exception {
final Path testFile = getRuntimeContext().getDistributedCache().getFile("test_data").toPath();
if (testFile.toAbsolutePath().toString().equals(initialPath)) {
throw new RuntimeException(String.format("Operator should access copy from cache rather than the " +
"initial file. Input file path: %s. Cache file path: %s", initialPath, testFile));
}
return Files.readAllLines(testFile)
.stream()
.collect(Collectors.joining("\n"));
}
}
}