Java Code Examples for org.apache.flink.api.common.Plan#setJobName()

The following examples show how to use org.apache.flink.api.common.Plan#setJobName() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ExecutionContext.java    From flink with Apache License 2.0 6 votes vote down vote up
private FlinkPlan createPlan(String name, Configuration flinkConfig) {
	if (streamExecEnv != null) {
		// special case for Blink planner to apply batch optimizations
		// note: it also modifies the ExecutionConfig!
		if (executor instanceof ExecutorBase) {
			return ((ExecutorBase) executor).generateStreamGraph(name);
		}
		return streamExecEnv.getStreamGraph(name);
	} else {
		final int parallelism = execEnv.getParallelism();
		final Plan unoptimizedPlan = execEnv.createProgramPlan();
		unoptimizedPlan.setJobName(name);
		final Optimizer compiler = new Optimizer(new DataStatistics(), new DefaultCostEstimator(), flinkConfig);
		return ClusterClient.getOptimizedPlan(compiler, unoptimizedPlan, parallelism);
	}
}
 
Example 2
Source File: ExecutionContext.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
private FlinkPlan createPlan(String name, Configuration flinkConfig) {
	if (streamExecEnv != null) {
		final StreamGraph graph = streamExecEnv.getStreamGraph();
		graph.setJobName(name);
		return graph;
	} else {
		final int parallelism = execEnv.getParallelism();
		final Plan unoptimizedPlan = execEnv.createProgramPlan();
		unoptimizedPlan.setJobName(name);
		final Optimizer compiler = new Optimizer(new DataStatistics(), new DefaultCostEstimator(), flinkConfig);
		return ClusterClient.getOptimizedPlan(compiler, unoptimizedPlan, parallelism);
	}
}
 
Example 3
Source File: OperatorTranslation.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
public Plan translateToPlan(List<DataSink<?>> sinks, String jobName) {
	List<GenericDataSinkBase<?>> planSinks = new ArrayList<>();

	for (DataSink<?> sink : sinks) {
		planSinks.add(translate(sink));
	}

	Plan p = new Plan(planSinks);
	p.setJobName(jobName);
	return p;
}
 
Example 4
Source File: OperatorTranslation.java    From flink with Apache License 2.0 5 votes vote down vote up
public Plan translateToPlan(List<DataSink<?>> sinks, String jobName) {
	List<GenericDataSinkBase<?>> planSinks = new ArrayList<>();

	for (DataSink<?> sink : sinks) {
		planSinks.add(translate(sink));
	}

	Plan p = new Plan(planSinks);
	p.setJobName(jobName);
	return p;
}
 
Example 5
Source File: OperatorTranslation.java    From flink with Apache License 2.0 5 votes vote down vote up
public Plan translateToPlan(List<DataSink<?>> sinks, String jobName) {
	List<GenericDataSinkBase<?>> planSinks = new ArrayList<>();

	for (DataSink<?> sink : sinks) {
		planSinks.add(translate(sink));
	}

	Plan p = new Plan(planSinks);
	p.setJobName(jobName);
	return p;
}