-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
enhance: API integration with storage v2 in clustering-compactions #40133
base: master
Are you sure you want to change the base?
enhance: API integration with storage v2 in clustering-compactions #40133
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: tedxu 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 |
@tedxu Please associate the related issue to the body of your Pull Request. (eg. “issue: #”) |
@tedxu E2e jenkins job failed, comment |
Codecov ReportAttention: Patch coverage is
❌ Your patch check has failed because the patch coverage (75.00%) is below the target coverage (80.00%). You can increase the patch coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## master #40133 +/- ##
==========================================
+ Coverage 80.55% 80.56% +0.01%
==========================================
Files 1470 1473 +3
Lines 206087 205962 -125
==========================================
- Hits 166014 165937 -77
+ Misses 34058 34034 -24
+ Partials 6015 5991 -24
|
@tedxu E2e jenkins job failed, comment |
@tedxu cpp-unit-test check failed, comment |
Signed-off-by: Ted Xu <[email protected]>
Signed-off-by: Ted Xu <[email protected]>
Signed-off-by: Ted Xu <[email protected]>
d19f445
to
79d88d2
Compare
@tedxu go-sdk check failed, comment |
@tedxu E2e jenkins job failed, comment |
Signed-off-by: Ted Xu <[email protected]>
Signed-off-by: Ted Xu <[email protected]>
@tedxu E2e jenkins job failed, comment |
Signed-off-by: Ted Xu <[email protected]>
@tedxu E2e jenkins job failed, comment |
/run-cpu-e2e |
} | ||
|
||
// DONOT return an empty list if every insert of the segment is deleted, | ||
// append an empty segment instead |
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.
comments is not match with the method?
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, thanks!
@@ -106,7 +106,6 @@ func (t *clusteringCompactionTask) Process() bool { | |||
if currentState != lastState { | |||
ts := time.Now().Unix() | |||
lastStateDuration := ts - t.GetTaskProto().GetLastStateStartTime() | |||
log.Info("clustering compaction task state changed", zap.String("lastState", lastState), zap.String("currentState", currentState), zap.Int64("elapse seconds", lastStateDuration)) |
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.
keep this?
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 line is duplicated several lines later, which makes the log difficult to read.
See #39173