Class BatchExecHashJoin

java.lang.Object
org.apache.flink.table.planner.plan.nodes.exec.ExecNodeBase<org.apache.flink.table.data.RowData>
org.apache.flink.table.planner.plan.nodes.exec.batch.BatchExecHashJoin
All Implemented Interfaces:
AdaptiveJoinExecNode, BatchExecNode<org.apache.flink.table.data.RowData>, ExecNode<org.apache.flink.table.data.RowData>, ExecNodeTranslator<org.apache.flink.table.data.RowData>, FusionCodegenExecNode, SingleTransformationTranslator<org.apache.flink.table.data.RowData>

@ExecNodeMetadata(name="batch-exec-join", version=1, producedTransformations="join", consumedOptions={"table.exec.resource.hash-join.memory","table.exec.resource.external-buffer-memory","table.exec.resource.sort.memory","table.exec.spill-compression.enabled","table.exec.spill-compression.block-size"}, minPlanVersion=v2_0, minStateVersion=v2_0) public class BatchExecHashJoin extends ExecNodeBase<org.apache.flink.table.data.RowData> implements BatchExecNode<org.apache.flink.table.data.RowData>, SingleTransformationTranslator<org.apache.flink.table.data.RowData>, AdaptiveJoinExecNode
BatchExecNode for Hash Join.
  • Field Details

  • Constructor Details

    • BatchExecHashJoin

      public BatchExecHashJoin(org.apache.flink.configuration.ReadableConfig tableConfig, JoinSpec joinSpec, int estimatedLeftAvgRowSize, int estimatedRightAvgRowSize, long estimatedLeftRowCount, long estimatedRightRowCount, boolean isBroadcast, boolean leftIsBuild, boolean tryDistinctBuildRow, InputProperty leftInputProperty, InputProperty rightInputProperty, org.apache.flink.table.types.logical.RowType outputType, boolean withJobStrategyHint, String description)
    • BatchExecHashJoin

      public BatchExecHashJoin(int id, ExecNodeContext context, org.apache.flink.configuration.ReadableConfig persistedConfig, JoinSpec joinSpec, int estimatedLeftAvgRowSize, int estimatedRightAvgRowSize, long estimatedLeftRowCount, long estimatedRightRowCount, boolean isBroadcast, boolean leftIsBuild, boolean tryDistinctBuildRow, List<InputProperty> inputProperties, org.apache.flink.table.types.logical.RowType outputType, String description, boolean withJobStrategyHint)
  • Method Details