-
Notifications
You must be signed in to change notification settings - Fork 409
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
KVStore: Enhance Parallel Prehandle #9155
Conversation
@@ -448,6 +448,10 @@ size_t KVStore::getOngoingPrehandleTaskCount() const | |||
{ | |||
return std::max(0, ongoing_prehandle_task_count.load()); | |||
} | |||
size_t KVStore::getOngoingPrehandleSubtaskCount() const | |||
{ | |||
return std::max(0, prehandling_trace.ongoing_prehandle_subtask_count.load()); |
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.
Is it possible for ongoing_prehandle_subtask_count
to be a negative number?
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.
No
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.
So why need std::max
here?
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: JinheLin, Lloyd-Pottiger 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:
|
LOG_DEBUG( | ||
log, | ||
"Done loading all kvpairs, CF={} offset={} processed_bytes={} write_cf_offset={} region_id={} split_id={} " | ||
"snapshot_index={}", | ||
"snapshot_index={} elapsed_sec={} speed={}", |
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.
this print elapsed_sec
with milliseconds, which is confusing...
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.
Will fix in #9153
What problem does this PR solve?
Issue Number: close #8081
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note