-
Notifications
You must be signed in to change notification settings - Fork 289
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
ticdc: Support create table
ddl only appear in tidb_ddl_history instead of tidb_ddl_job table
#10907
ticdc: Support create table
ddl only appear in tidb_ddl_history instead of tidb_ddl_job table
#10907
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more. @@ Coverage Diff @@
## master #10907 +/- ##
================================================
+ Coverage 57.3895% 57.4968% +0.1072%
================================================
Files 851 851
Lines 125467 125840 +373
================================================
+ Hits 72005 72354 +349
- Misses 48044 48060 +16
- Partials 5418 5426 +8 |
…unyan_create_table
/test verify |
/test cdc-integration-mysql-test |
/test cdc-integration-pulsar-test |
/test dm-integration-test |
/test dm-compatibility-test |
/test cdc-integration-kafka-test |
/test cdc-integration-pulsar-test |
/test verify |
Please add some integration tests to cover the |
pkg/version/check.go
Outdated
@@ -37,13 +37,13 @@ import ( | |||
|
|||
var ( | |||
// minPDVersion is the version of the minimal compatible PD. | |||
minPDVersion = semver.New("5.1.0-alpha") | |||
minPDVersion = semver.New("7.1.0-alpha") |
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.
Please comment why 7.1 is required.
Rest LGTM. |
/retest |
…unyan_create_table
/hold |
…unyan_create_table
/test dm-integration-test |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: CharlesCheung96, hicqu The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
/unhold |
/retest |
/test verify |
/test cdc-integration-mysql-test |
…tory instead of tidb_ddl_job table (pingcap#10907)" This reverts commit 8d6a9e1.
…tory instead of tidb_ddl_job table (pingcap#10907)" This reverts commit 8d6a9e1.
…tory instead of tidb_ddl_job table (pingcap#10907)" This reverts commit 8d6a9e1.
What problem does this PR solve?
Issue Number: close #10908
What is changed and how it works?
create table
ddl as the real ddl jobCheck List
Tests
set global tidb_enable_fast_create_table =on
andset global tidb_enable_fast_create_table =off
. To make sure TiCDC can work well in both old ddl version and new ddl versions.create table
andadd columns
before and after the modification. Both took 5 mins. Thus, the modification will not affect TiCDC performance.Questions
Will it cause performance regression or break compatibility?
Do you need to update user documentation, design documentation or monitoring documentation?
Release note