[BP-0.8][docs] Clarify the supported flink versions for delta join#2030
Merged
Conversation
(cherry picked from commit 4f00709)
| - The downstream node of the join must support idempotent updates, typically it's an upsert sink and should not have a `SinkUpsertMaterializer` node before it. | ||
| - Flink planner automatically inserts a `SinkUpsertMaterializer` when the sink’s primary key does not fully cover the upstream update key. | ||
| - You can learn more details about `SinkUpsertMaterializer` by reading this [blog](https://www.ververica.com/blog/flink-sql-secrets-mastering-the-art-of-changelog-events). | ||
| - Since delta join does not support to handle update-before messages, it is necessary to ensure that the entire pipeline can safely discard update-before messages. That means when consuming a CDC stream: |
Contributor
There was a problem hiding this comment.
Since delta join does not support to handle update-before messages
Seems like a typo here, do you mean?
Since delta join does not support update-before messages
Contributor
Author
There was a problem hiding this comment.
In Flink, when consuming a changelog source, the source operator may output insert, update-before, update-after, and delete messages (update-before and update-after originate from an update statement in the storage engine.).
Here, I would like to express that the delta join operator cannot handle (consume) the update-before messages output by the source operator.
wuchong
approved these changes
Dec 2, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Linked issue: close #1986
Brief change log
BP #2000 to release-0.8
Tests
API and Format
Documentation