-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-36607][table-planner] Introduce ExecNode for adaptive join.
- Loading branch information
Showing
19 changed files
with
400 additions
and
200 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
...er/src/main/java/org/apache/flink/table/planner/plan/nodes/exec/AdaptiveJoinExecNode.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,31 @@ | ||
/* | ||
* 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; | ||
|
||
import org.apache.flink.table.planner.plan.nodes.exec.batch.BatchExecAdaptiveJoin; | ||
|
||
/** A {@link ExecNode} which support to convert to adaptive join node. */ | ||
public interface AdaptiveJoinExecNode { | ||
|
||
/** Check whether the join node can be transformed to {@link BatchExecAdaptiveJoin}. */ | ||
boolean canBeTransformedToAdaptiveJoin(); | ||
|
||
/** Transform this node to {@link BatchExecAdaptiveJoin}. */ | ||
BatchExecAdaptiveJoin toAdaptiveJoinNode(); | ||
} |
166 changes: 166 additions & 0 deletions
166
...main/java/org/apache/flink/table/planner/plan/nodes/exec/batch/BatchExecAdaptiveJoin.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,166 @@ | ||
/* | ||
* 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.batch; | ||
|
||
import org.apache.flink.api.dag.Transformation; | ||
import org.apache.flink.configuration.ReadableConfig; | ||
import org.apache.flink.streaming.api.operators.StreamOperatorFactory; | ||
import org.apache.flink.table.api.TableException; | ||
import org.apache.flink.table.data.RowData; | ||
import org.apache.flink.table.planner.adaptive.AdaptiveJoinOperatorGenerator; | ||
import org.apache.flink.table.planner.delegation.PlannerBase; | ||
import org.apache.flink.table.planner.plan.nodes.exec.ExecEdge; | ||
import org.apache.flink.table.planner.plan.nodes.exec.ExecNodeBase; | ||
import org.apache.flink.table.planner.plan.nodes.exec.ExecNodeConfig; | ||
import org.apache.flink.table.planner.plan.nodes.exec.ExecNodeContext; | ||
import org.apache.flink.table.planner.plan.nodes.exec.InputProperty; | ||
import org.apache.flink.table.planner.plan.nodes.exec.SingleTransformationTranslator; | ||
import org.apache.flink.table.planner.plan.nodes.exec.spec.JoinSpec; | ||
import org.apache.flink.table.planner.plan.nodes.exec.utils.ExecNodeUtil; | ||
import org.apache.flink.table.planner.plan.utils.JoinUtil; | ||
import org.apache.flink.table.planner.plan.utils.OperatorType; | ||
import org.apache.flink.table.runtime.generated.GeneratedJoinCondition; | ||
import org.apache.flink.table.runtime.operators.join.adaptive.AdaptiveJoin; | ||
import org.apache.flink.table.runtime.operators.join.adaptive.AdaptiveJoinOperatorFactory; | ||
import org.apache.flink.table.runtime.typeutils.InternalTypeInfo; | ||
import org.apache.flink.table.types.logical.RowType; | ||
import org.apache.flink.util.InstantiationUtil; | ||
|
||
import java.io.IOException; | ||
import java.util.List; | ||
|
||
/** {@link BatchExecNode} for adaptive join. */ | ||
public class BatchExecAdaptiveJoin extends ExecNodeBase<RowData> | ||
implements BatchExecNode<RowData>, SingleTransformationTranslator<RowData> { | ||
|
||
private final JoinSpec joinSpec; | ||
private final boolean leftIsBuild; | ||
private final int estimatedLeftAvgRowSize; | ||
private final int estimatedRightAvgRowSize; | ||
private final long estimatedLeftRowCount; | ||
private final long estimatedRightRowCount; | ||
private final boolean tryDistinctBuildRow; | ||
private final String description; | ||
private final OperatorType originalJoin; | ||
|
||
public BatchExecAdaptiveJoin( | ||
ReadableConfig tableConfig, | ||
JoinSpec joinSpec, | ||
int estimatedLeftAvgRowSize, | ||
int estimatedRightAvgRowSize, | ||
long estimatedLeftRowCount, | ||
long estimatedRightRowCount, | ||
boolean leftIsBuild, | ||
boolean tryDistinctBuildRow, | ||
List<InputProperty> inputProperties, | ||
RowType outputType, | ||
String description, | ||
OperatorType originalJoin) { | ||
super( | ||
ExecNodeContext.newNodeId(), | ||
ExecNodeContext.newContext(BatchExecAdaptiveJoin.class), | ||
ExecNodeContext.newPersistedConfig(BatchExecAdaptiveJoin.class, tableConfig), | ||
inputProperties, | ||
outputType, | ||
description); | ||
this.joinSpec = joinSpec; | ||
this.estimatedLeftAvgRowSize = estimatedLeftAvgRowSize; | ||
this.estimatedRightAvgRowSize = estimatedRightAvgRowSize; | ||
this.estimatedLeftRowCount = estimatedLeftRowCount; | ||
this.estimatedRightRowCount = estimatedRightRowCount; | ||
this.leftIsBuild = leftIsBuild; | ||
this.tryDistinctBuildRow = tryDistinctBuildRow; | ||
this.description = description; | ||
this.originalJoin = originalJoin; | ||
} | ||
|
||
@Override | ||
@SuppressWarnings("unchecked") | ||
protected Transformation<RowData> translateToPlanInternal( | ||
PlannerBase planner, ExecNodeConfig config) { | ||
ExecEdge leftInputEdge = getInputEdges().get(0); | ||
ExecEdge rightInputEdge = getInputEdges().get(1); | ||
|
||
Transformation<RowData> leftInputTransform = | ||
(Transformation<RowData>) leftInputEdge.translateToPlan(planner); | ||
Transformation<RowData> rightInputTransform = | ||
(Transformation<RowData>) rightInputEdge.translateToPlan(planner); | ||
// get input types | ||
RowType leftType = (RowType) leftInputEdge.getOutputType(); | ||
RowType rightType = (RowType) rightInputEdge.getOutputType(); | ||
long managedMemory = JoinUtil.getManagedMemory(joinSpec.getJoinType(), config); | ||
GeneratedJoinCondition condFunc = | ||
JoinUtil.generateConditionFunction( | ||
config, | ||
planner.getFlinkContext().getClassLoader(), | ||
joinSpec.getNonEquiCondition().orElse(null), | ||
leftType, | ||
rightType); | ||
|
||
AdaptiveJoinOperatorGenerator adaptiveJoin = | ||
new AdaptiveJoinOperatorGenerator( | ||
joinSpec.getLeftKeys(), | ||
joinSpec.getRightKeys(), | ||
joinSpec.getJoinType(), | ||
joinSpec.getFilterNulls(), | ||
leftType, | ||
rightType, | ||
condFunc, | ||
estimatedLeftAvgRowSize, | ||
estimatedRightAvgRowSize, | ||
estimatedLeftRowCount, | ||
estimatedRightRowCount, | ||
tryDistinctBuildRow, | ||
managedMemory, | ||
leftIsBuild, | ||
originalJoin); | ||
|
||
return ExecNodeUtil.createTwoInputTransformation( | ||
leftInputTransform, | ||
rightInputTransform, | ||
createTransformationName(config), | ||
createTransformationDescription(config), | ||
getAdaptiveJoinOperatorFactory(adaptiveJoin), | ||
InternalTypeInfo.of(getOutputType()), | ||
// Given that the probe side might be decided at runtime, we choose the larger | ||
// parallelism here. | ||
Math.max(leftInputTransform.getParallelism(), rightInputTransform.getParallelism()), | ||
managedMemory, | ||
false); | ||
} | ||
|
||
private StreamOperatorFactory<RowData> getAdaptiveJoinOperatorFactory( | ||
AdaptiveJoin adaptiveJoin) { | ||
try { | ||
byte[] adaptiveJoinSerialized = InstantiationUtil.serializeObject(adaptiveJoin); | ||
return new AdaptiveJoinOperatorFactory<>(adaptiveJoinSerialized); | ||
} catch (IOException e) { | ||
throw new TableException("The adaptive join operator failed to serialize.", e); | ||
} | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return "AdaptiveJoin(" | ||
+ "originalJoin=[" | ||
+ originalJoin | ||
+ "], " | ||
+ description.substring(description.indexOf('(') + 1); | ||
} | ||
} |
Oops, something went wrong.