
org.apache.flink.client.program.StreamPlanEnvironment Maven / Gradle / Ivy
/*
* 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.client.program;
import org.apache.flink.annotation.PublicEvolving;
import org.apache.flink.api.dag.Pipeline;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.core.execution.JobClient;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironmentFactory;
import org.apache.flink.streaming.api.graph.StreamGraph;
/**
* A special {@link StreamExecutionEnvironment} that is used in the web frontend when generating a
* user-inspectable graph of a streaming job.
*/
@PublicEvolving
public class StreamPlanEnvironment extends StreamExecutionEnvironment {
private Pipeline pipeline;
public Pipeline getPipeline() {
return pipeline;
}
public StreamPlanEnvironment(
Configuration configuration, ClassLoader userClassLoader, int parallelism) {
super(configuration, userClassLoader);
if (parallelism > 0) {
setParallelism(parallelism);
}
}
@Override
public JobClient executeAsync(StreamGraph streamGraph) {
pipeline = streamGraph;
// do not go on with anything now!
throw new ProgramAbortException();
}
public void setAsContext() {
StreamExecutionEnvironmentFactory factory =
conf -> {
this.configure(conf, getUserClassloader());
return this;
};
initializeContextEnvironment(factory);
}
public void unsetAsContext() {
resetContextEnvironment();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy