forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-14067] Reflectively load JSON plan generator in ExecutionPlanUtil
We do this to get rid of the dependency on PlanExecutor for generating the JSON plan. The executor should not be concerned with printing JSON plans and this will simplify future executor work.
- Loading branch information
Showing
3 changed files
with
162 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...timizer/src/main/java/org/apache/flink/optimizer/plandump/ExecutionPlanJSONGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* 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.optimizer.plandump; | ||
|
||
import org.apache.flink.api.common.Plan; | ||
import org.apache.flink.api.java.ExecutionPlanUtil; | ||
import org.apache.flink.configuration.Configuration; | ||
import org.apache.flink.optimizer.DataStatistics; | ||
import org.apache.flink.optimizer.Optimizer; | ||
import org.apache.flink.optimizer.costs.DefaultCostEstimator; | ||
import org.apache.flink.optimizer.plan.OptimizedPlan; | ||
|
||
/** | ||
* Utility for extracting an execution plan (as JSON) from a given {@link Plan}. | ||
* | ||
* <p>We need this util here in the optimizer because it is the only module that has {@link | ||
* Optimizer}, {@link OptimizedPlan}, and {@link PlanJSONDumpGenerator} available. We use this | ||
* reflectively from the batch execution environments to generate the plan, which we cannot do | ||
* there. It is used from {@link ExecutionPlanUtil}. | ||
*/ | ||
@SuppressWarnings("unused") | ||
public class ExecutionPlanJSONGenerator implements ExecutionPlanUtil.ExecutionPlanJSONGenerator { | ||
|
||
@Override | ||
public String getExecutionPlan(Plan plan) { | ||
Optimizer opt = new Optimizer( | ||
new DataStatistics(), | ||
new DefaultCostEstimator(), | ||
new Configuration()); | ||
OptimizedPlan optPlan = opt.compile(plan); | ||
return new PlanJSONDumpGenerator().getOptimizerPlanAsJSON(optPlan); | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
flink-optimizer/src/test/java/org/apache/flink/optimizer/plandump/ExecutionPlanUtilTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* 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.optimizer.plandump; | ||
|
||
import org.apache.flink.api.common.Plan; | ||
import org.apache.flink.api.common.typeinfo.TypeHint; | ||
import org.apache.flink.api.java.ExecutionEnvironment; | ||
import org.apache.flink.api.java.ExecutionPlanUtil; | ||
import org.apache.flink.api.java.tuple.Tuple2; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.core.StringContains.containsString; | ||
|
||
/** | ||
* Tests for {@link ExecutionPlanUtil}. We have to test this here in flink-optimizer because the | ||
* util only works when {@link ExecutionPlanJSONGenerator} is available, which is in | ||
* flink-optimizer. | ||
*/ | ||
public class ExecutionPlanUtilTest { | ||
|
||
@Test | ||
public void executionPlanCanBeRetrieved() { | ||
ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); | ||
env.setParallelism(8); | ||
|
||
env | ||
.readCsvFile("file:///will/never/be/executed") | ||
.types(String.class, Double.class) | ||
.name("sourceThatWillNotRun") | ||
.map((in) -> in) | ||
.returns(new TypeHint<Tuple2<String, Double>>() {}) | ||
.name("theMap") | ||
.writeAsText("file:///will/not/be/executed") | ||
.name("sinkThatWillNotRun"); | ||
|
||
Plan plan = env.createProgramPlan(); | ||
String executionPlanAsJSON = ExecutionPlanUtil.getExecutionPlanAsJSON(plan); | ||
|
||
assertThat(executionPlanAsJSON, containsString("sourceThatWillNotRun")); | ||
assertThat(executionPlanAsJSON, containsString("sinkThatWillNotRun")); | ||
assertThat(executionPlanAsJSON, containsString("theMap")); | ||
} | ||
} |