-
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
ddlManager (ticdc): add bootstrap sending function #10045
Conversation
cdc/owner/ddl_manager.go
Outdated
m.errCh <- err | ||
return | ||
} | ||
atomic.StoreInt32(&m.bootstrapState, int32(bootstrapStateCompleted)) |
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.
When the bootstrap state should be completed?
For one bootstrap event is sent or all the bootstrap events are sent ?
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.
Shall we move L668 outside of the loop ?
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.
The bootstrapStateCompleted
will be set after all bootstrap events are sent.
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.
It looks it's set after the first one bootstrap event is sent at the moment.
Co-authored-by: Ling Jin <[email protected]>
…_bootstrap_function
/retest |
@@ -184,6 +198,18 @@ func (m *ddlManager) tick( | |||
checkpointTs model.Ts, | |||
tableCheckpoint map[model.TableName]model.Ts, | |||
) ([]model.TableID, *schedulepb.BarrierWithMinTs, error) { | |||
// needBootstrap is true when the downstream is kafka | |||
// and the protocol is simple protocol. |
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.
I think this comment is redundant.
You can move it to the declaration of the needBootstrap
variable
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.
After next PR merged, it will be remove.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: 3AceShowHand, CharlesCheung96 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:
|
/retest |
What problem does this PR solve?
Issue Number: ref #9898 close #10107
What is changed and how it works?
Check List
Tests
Questions
Will it cause performance regression or break compatibility?
Do you need to update user documentation, design documentation or monitoring documentation?
Release note