-
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
log restore: fix the bottleneck of btree map #59896
Conversation
Skipping CI for Draft Pull Request. |
Hi @3pointer. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. 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 kubernetes-sigs/prow repository. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #59896 +/- ##
================================================
+ Coverage 72.9585% 74.7004% +1.7418%
================================================
Files 1700 1717 +17
Lines 469738 470992 +1254
================================================
+ Hits 342714 351833 +9119
+ Misses 105904 97312 -8592
- Partials 21120 21847 +727
Flags with carried forward coverage won't be shown. Click here to find out more.
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Leavrth, YuJuncen 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 |
/rebuild |
/retest |
What problem does this PR solve?
Issue Number: close #59900
Problem Summary:
The current log restore process accumulates small files, which can negatively impact performance. During performance testing, log restore took twice as long as before due to the excessive number of small files. To optimize performance, we should skip accumulating small files, as was done previously.
What changed and how does it work?
Check List
Tests
before this PR

after this PR

Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.