-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
config: remove the special limit of txn-total-size-limit when binlog enabled #16919
Conversation
…enabled Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/merge |
/run-all-tests |
@jackysp merge failed. |
Codecov Report
@@ Coverage Diff @@
## master #16919 +/- ##
================================================
+ Coverage 80.0910% 80.1423% +0.0512%
================================================
Files 508 508
Lines 138149 138269 +120
================================================
+ Hits 110645 110812 +167
+ Misses 18565 18525 -40
+ Partials 8939 8932 -7 |
/run-integration-copr-test |
/merge |
cherry pick to release-4.0 in PR #16941 |
Signed-off-by: Shuaipeng Yu jackysp@gmail.com
What problem does this PR solve?
Issue Number: close #xxx
Problem Summary:
We've tested the big transaction when binlog enabled, pump, and drainer can handle 10GB transactions. But with Kafka as an arbiter or some other usage of binlog, it could only handle 1GB transactions, because Kafka has its own max message limit.
What is changed and how it works?
Proposal: xxx
What's Changed:
We could not know if there is a Kafka cluster using in the binlog replication. So we remove the limitation and keep the warnings of txn-total-size-limit usage.
How it Works:
Related changes
pingcap/docs
/pingcap/docs-cn
:Check List
Tests
There is an internal doc for it.
Release note
Remove the special limit of txn-total-size-limit when binlog enabled.