Uses of Class
org.apache.flink.table.runtime.operators.TableStreamOperator
Packages that use TableStreamOperator
Package
Description
-
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.join
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.joinModifier and TypeClassDescriptionclassHash join base operator.classAn 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.windowModifier and TypeClassDescriptionclassA 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.overModifier and TypeClassDescriptionclassthe operator for OVER window need cache data by ResettableExternalBuffer forOverWindowFrame.classThe operator for OVER window don't need cache data. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.runtimefilter
Modifier and TypeClassDescriptionclassGlobal runtime filter builder operator.classLocal 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.sinkModifier and TypeClassDescriptionclassProcessesRowDatato 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.classOperator that converts to external data structures and unwraps atomic records if necessary.classAn operator that sets the row kind of the incoming records to a specific row kind.classAn operator that maintains incoming records in state corresponding to the upsert keys and generates an upsert view for the downstream operator.classOperator which sets the timestamp on the StreamRecord from the corresponding column of each row. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.sort
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.sortModifier and TypeClassDescriptionclassOperator for batch limit.classRank operator to compute top N.classOperator for batch sort limit.classOperator for batch sort.classOperator for stream sort. -
Uses of TableStreamOperator in org.apache.flink.table.runtime.operators.source
Subclasses of TableStreamOperator in org.apache.flink.table.runtime.operators.sourceModifier and TypeClassDescriptionfinal classOperator 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
Modifier and TypeClassDescriptionfinal 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
Modifier and TypeClassDescriptionclassThe operator for aligned window table function.classThe operator for unaligned window table function.classTheWindowTableFunctionOperatorBaseacts as a table-valued function to assign windows for input row.