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-20515][table-planner-blink] Make StreamExecMultipleInput exten…
…ded only from StreamExecNode and port it to Java This closes apache#14380
- Loading branch information
Showing
3 changed files
with
86 additions
and
77 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
77 changes: 77 additions & 0 deletions
77
...n/java/org/apache/flink/table/planner/plan/nodes/exec/stream/StreamExecMultipleInput.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,77 @@ | ||
/* | ||
* 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.table.planner.plan.nodes.exec.stream; | ||
|
||
import org.apache.flink.api.dag.Transformation; | ||
import org.apache.flink.table.data.RowData; | ||
import org.apache.flink.table.planner.delegation.StreamPlanner; | ||
import org.apache.flink.table.planner.plan.nodes.exec.ExecEdge; | ||
import org.apache.flink.table.planner.plan.nodes.exec.ExecNode; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
/** | ||
* Stream exec node for multiple input which contains a sub-graph of {@link ExecNode}s. | ||
* The root node of the sub-graph is {@link #rootNode}, and the leaf nodes of the sub-graph are | ||
* the output nodes of the {@link #getInputNodes()}. | ||
* | ||
* <p>The following example shows a graph of {@code ExecNode}s with multiple input node: | ||
* <pre>{@code | ||
* Sink | ||
* | | ||
* +---------+--------+ | ||
* | | | | ||
* | Join | | ||
* | / \ | StreamExecMultipleInput | ||
* | Agg1 Agg2 | | ||
* | | | | | ||
* +----+-------+-----+ | ||
* | | | ||
* Exchange1 Exchange2 | ||
* | | | ||
* Scan1 Scan2 | ||
* }</pre> | ||
* | ||
* <p>The multiple input node contains three nodes: `Join`, `Agg1` and `Agg2`. | ||
* `Join` is the root node ({@link #rootNode}) of the sub-graph, | ||
* `Agg1` and `Agg2` are the leaf nodes of the sub-graph, | ||
* `Exchange1` and `Exchange2` are the input nodes of the multiple input node. | ||
*/ | ||
public class StreamExecMultipleInput extends StreamExecNode<RowData> { | ||
|
||
private final ExecNode<?> rootNode; | ||
|
||
public StreamExecMultipleInput( | ||
List<ExecNode<?>> inputNodes, | ||
ExecNode<?> rootNode, | ||
String description) { | ||
super( | ||
inputNodes, | ||
inputNodes.stream().map(i -> ExecEdge.DEFAULT).collect(Collectors.toList()), | ||
rootNode.getOutputType(), | ||
description); | ||
this.rootNode = rootNode; | ||
} | ||
|
||
@Override | ||
protected Transformation<RowData> translateToPlanInternal(StreamPlanner planner) { | ||
throw new UnsupportedOperationException("This method is not implemented yet."); | ||
} | ||
} |
62 changes: 0 additions & 62 deletions
62
...a/org/apache/flink/table/planner/plan/nodes/physical/stream/StreamExecMultipleInput.scala
This file was deleted.
Oops, something went wrong.