Class BatchExecDynamicFilteringDataCollector

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

public class BatchExecDynamicFilteringDataCollector extends ExecNodeBase<Object> implements BatchExecNode<Object>
Batch ExecNode that collects inputs and builds DynamicFilteringData, and then sends the DynamicFilteringEvent to the source coordinator.
  • Constructor Details

    • BatchExecDynamicFilteringDataCollector

      public BatchExecDynamicFilteringDataCollector(List<Integer> dynamicFilteringFieldIndices, org.apache.flink.configuration.ReadableConfig tableConfig, InputProperty inputProperty, org.apache.flink.table.types.logical.RowType outputType, String description)
  • Method Details

    • translateToPlanInternal

      protected org.apache.flink.api.dag.Transformation<Object> translateToPlanInternal(PlannerBase planner, ExecNodeConfig config)
      Description copied from class: ExecNodeBase
      Internal method, translates this node into a Flink operator.
      Specified by:
      translateToPlanInternal in class ExecNodeBase<Object>
      Parameters:
      planner - The planner.
      config - per-ExecNode configuration that contains the merged configuration from various layers which all the nodes implementing this method should use, instead of retrieving configuration from the planner. For more details check ExecNodeConfig.