-
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
checker(dm): add a worker pool to concurrently working #7796
Conversation
Signed-off-by: lance6716 <[email protected]>
Signed-off-by: lance6716 <[email protected]>
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
Signed-off-by: lance6716 <[email protected]>
Signed-off-by: lance6716 <[email protected]>
/run-dm-integration-test |
Signed-off-by: lance6716 <[email protected]>
/run-dm-integration-test |
Signed-off-by: lance6716 <[email protected]>
upstreamParser *parser.Parser | ||
} | ||
|
||
func (w *tablesCheckerWorker) handle(ctx context.Context, checkItem *checkItem) ([]*incompatibilityOption, error) { |
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.
moved from (*TablesChecker).startWorker
Signed-off-by: lance6716 <[email protected]>
Signed-off-by: lance6716 <[email protected]>
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.
rest lgtm
} | ||
close(c.optCh) | ||
optWg.Wait() | ||
finalHandler() |
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.
call it with defer
?
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.
though its name is "finalXXX", it is a normal logic rather than some cleanup logic. It will append common message to the result where the message is calculated from all jobs, so if the result has been marked failed we can skip it.
dm/pkg/checker/table_structure.go
Outdated
tableMaps map[string]map[filter.Table][]filter.Table, | ||
inCh chan *checkItem, | ||
putJobFn func(*checkItem) bool, |
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.
why not pass worker-pool directly
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.
Signed-off-by: lance6716 <[email protected]>
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 118ed01
|
/run-all-tests |
/run-all-tests |
@lance6716: Your PR was out of date, I have automatically updated it for you. If the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
/run-all-tests |
/run-engine-integration-test |
What problem does this PR solve?
Issue Number: ref #4287
What is changed and how it works?
please review dm/pkg/checker/worker_pool.go and dm/pkg/checker/worker_pool_test.go first
remove a TODO: concurrent fetch table seize intra-source
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