-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking issue for splitting big transaction #5231
Labels
affects-6.1
This bug affects the 6.1.x(LTS) versions.
area/ticdc
Issues or PRs related to TiCDC.
type/enhancement
The issue or PR belongs to an enhancement.
Comments
CharlesCheung96
added
the
type/enhancement
The issue or PR belongs to an enhancement.
label
Apr 21, 2022
ti-chi-bot
pushed a commit
that referenced
this issue
Jun 21, 2022
ti-chi-bot
pushed a commit
that referenced
this issue
Jul 1, 2022
CharlesCheung96
added a commit
to ti-chi-bot/tiflow
that referenced
this issue
Jul 1, 2022
CharlesCheung96
added a commit
to ti-chi-bot/tiflow
that referenced
this issue
Jul 4, 2022
ti-chi-bot
pushed a commit
that referenced
this issue
Jul 4, 2022
CharlesCheung96
added a commit
to ti-chi-bot/tiflow
that referenced
this issue
Jul 6, 2022
CharlesCheung96
added a commit
to ti-chi-bot/tiflow
that referenced
this issue
Jul 6, 2022
CharlesCheung96
added a commit
to ti-chi-bot/tiflow
that referenced
this issue
Jul 6, 2022
/label affects-6.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
affects-6.1
This bug affects the 6.1.x(LTS) versions.
area/ticdc
Issues or PRs related to TiCDC.
type/enhancement
The issue or PR belongs to an enhancement.
Is your feature request related to a problem?
For CDC, a large transaction is expressed as "a single transaction containing a large number of row-level KV changes". In the current data flow link (puller --> sorter --> mounter --> sink), the sorter is equivalent to an infinite reservoir, and its output transaction events can be formalized as
pre_resolved_ts, rawkv_1, rawkv_2,rawkv_3 ...... rawkv_n, resolved_ts
The following problems may occur in the case where n takes a large value.
Describe the feature you'd like
Solve OOM and latency problems by splitting transactions and writing to downstream in multiple batches.
Related Issues
The text was updated successfully, but these errors were encountered: