-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Improve load performance #16514
Improve load performance #16514
Conversation
/assign @congqixia |
Codecov Report
@@ Coverage Diff @@
## master #16514 +/- ##
==========================================
+ Coverage 80.72% 80.74% +0.01%
==========================================
Files 437 439 +2
Lines 69113 69351 +238
==========================================
+ Hits 55790 55995 +205
- Misses 10670 10687 +17
- Partials 2653 2669 +16
|
c0a9e7d
to
0f8c90b
Compare
@yah01 ut workflow job failed, comment |
84a1f8d
to
cc62947
Compare
cc62947
to
444ab4b
Compare
444ab4b
to
5c8b179
Compare
@yah01 E2e jenkins job failed, comment |
@yah01 ut workflow job failed, comment |
5c8b179
to
ce768d1
Compare
@yah01 E2e jenkins job failed, comment |
@yah01 ut workflow job failed, comment |
ce768d1
to
7a2c448
Compare
@yah01 E2e jenkins job failed, comment |
7a2c448
to
bb617c5
Compare
@yah01 E2e jenkins job failed, comment |
@yah01 ut workflow job failed, comment |
bb617c5
to
1021bd7
Compare
@yah01 E2e jenkins job failed, comment |
/run-checks |
@yah01 E2e jenkins job failed, comment |
1 similar comment
@yah01 E2e jenkins job failed, comment |
…lize binlogs concurrently per field/segment Signed-off-by: yah01 <yang.cen@zilliz.com>
1021bd7
to
1298fad
Compare
@@ -0,0 +1,51 @@ | |||
package concurrency |
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.
NIT: concurrency
package need more comments.
// if option.preExecute != nil { | ||
// err := option.preExecute() | ||
// if err != nil { | ||
// close(quit) | ||
// wg.Wait() | ||
// return err | ||
// } | ||
// } |
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.
option.preExecute/ postExecute comment can be deleted.
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: congqixia, yah01 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 |
Signed-off-by: yah01 yang.cen@zilliz.com
#15736 #13264
/kind improvement
previous closed pr: #16061
Now the segment loader loads the segment's fields concurrently, which helps reduce memory usage during loading. Further optimization for reducing memory usage is coming.