Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Implemented
-
None
Description
Introduce SortMergeJoinOperator: An implementation that realizes the joining through a sort-merge join strategy.
Support all sql types: INNER, LEFT, RIGHT, FULL, SEMI, ANTI
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.
Attachments
Issue Links
- is a child of
-
FLINK-11490 Add an initial Blink SQL batch runtime
- Closed
- links to