Uses of Class
org.apache.flink.table.runtime.operators.TableStreamOperator
-
-
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.join
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.join Modifier and Type Class Description classHashJoinOperatorHash join base operator.classSortMergeJoinOperatorAn implementation that realizes the joining through a sort-merge join strategy. 1.In most cases, its performance is weaker than HashJoin. 2.It is more stable than HashJoin, and most of the data can be sorted stably. 3.SortMergeJoin should be the best choice if sort can be omitted in the case of multi-level join cascade with the same key. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.join.window
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.join.window Modifier and Type Class Description classWindowJoinOperatorA streaming window join operator implemented by sync state api. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.over
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.over Modifier and Type Class Description classBufferDataOverWindowOperatorthe operator for OVER window need cache data by ResettableExternalBuffer forOverWindowFrame.classNonBufferOverWindowOperatorThe operator for OVER window don't need cache data. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.runtimefilter
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.runtimefilter Modifier and Type Class Description classGlobalRuntimeFilterBuilderOperatorGlobal runtime filter builder operator.classLocalRuntimeFilterBuilderOperatorLocal runtime filter builder operator. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.sink
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.sink Modifier and Type Class Description classOutputConversionOperatorOperator that converts to external data structures and unwraps atomic records if necessary.classRowKindSetterAn operator that sets the row kind of the incoming records to a specific row kind.classSinkUpsertMaterializerAn operator that maintains incoming records in state corresponding to the upsert keys and generates an upsert view for the downstream operator.classStreamRecordTimestampInserterOperator which sets the timestamp on the StreamRecord from the corresponding column of each row. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.sink.constraint
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.sink.constraint Modifier and Type Class Description classConstraintEnforcerProcessesRowDatato enforce the following constraints:NOT NULLcolumn constraint of a sink tableCHAR(length)/@{code VARCHAR(length)}: trim string values to comply with thelengthdefined in their corresponding types. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.sort
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.sort Modifier and Type Class Description classLimitOperatorOperator for batch limit.classRankOperatorRank operator to compute top N.classSortLimitOperatorOperator for batch sort limit.classSortOperatorOperator for batch sort.classStreamSortOperatorOperator for stream sort. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.source
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.source Modifier and Type Class Description classInputConversionOperator<E>Operator that converts to internal data structures and wraps atomic records if necessary. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.window.tvf.common
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.window.tvf.common Modifier and Type Class Description classWindowAggOperator<K,W>We divide windows into 2 categories: Aligned Windows and Unaligned Windows. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.window.tvf.operator
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.window.tvf.operator Modifier and Type Class Description classAlignedWindowTableFunctionOperatorThe operator for aligned window table function.classUnalignedWindowTableFunctionOperatorThe operator for unaligned window table function.classWindowTableFunctionOperatorBaseTheWindowTableFunctionOperatorBaseacts as a table-valued function to assign windows for input row.
-