-
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
statistics: handle deleted tables correctly in the PQ #57649
statistics: handle deleted tables correctly in the PQ #57649
Conversation
Signed-off-by: Rustin170506 <[email protected]>
Signed-off-by: Rustin170506 <[email protected]>
Signed-off-by: Rustin170506 <[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.
🔢 Self-check (PR reviewed by myself and ready for feedback.)
@@ -57,7 +57,7 @@ func (f *AnalysisJobFactory) CreateNonPartitionedTableAnalysisJob( | |||
tblInfo *model.TableInfo, | |||
tblStats *statistics.Table, | |||
) AnalysisJob { | |||
if !tblStats.IsEligibleForAnalysis() { | |||
if tblStats == nil || !tblStats.IsEligibleForAnalysis() { |
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.
We didn't encounter any issues here, just double-checking.
@@ -92,7 +92,7 @@ func (f *AnalysisJobFactory) CreateStaticPartitionAnalysisJob( | |||
partitionID int64, | |||
partitionStats *statistics.Table, | |||
) AnalysisJob { | |||
if !partitionStats.IsEligibleForAnalysis() { | |||
if partitionStats == nil || !partitionStats.IsEligibleForAnalysis() { |
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.
ditto
@@ -128,7 +128,7 @@ func (f *AnalysisJobFactory) CreateDynamicPartitionedTableAnalysisJob( | |||
globalTblStats *statistics.Table, | |||
partitionStats map[PartitionIDAndName]*statistics.Table, | |||
) AnalysisJob { | |||
if !globalTblStats.IsEligibleForAnalysis() { | |||
if globalTblStats == nil || !globalTblStats.IsEligibleForAnalysis() { |
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.
ditto
err := pq.syncFields.inner.delete(job) | ||
if err != nil { | ||
statslogutil.StatsLogger().Error("Failed to delete job from priority queue", | ||
zap.Error(err), | ||
zap.String("job", job.String()), | ||
) | ||
} | ||
continue |
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.
Fix the [category=stats] [recover="runtime error: invalid memory address or nil pointer dereference"]
@@ -608,3 +609,47 @@ func TestPQCanBeClosedAndReInitialized(t *testing.T) { | |||
// Check if the priority queue is initialized. | |||
require.True(t, pq.IsInitialized()) | |||
} | |||
|
|||
func TestPQHandlesTableDeletionGracefully(t *testing.T) { |
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.
Test case for: [category=stats] [recover="runtime error: invalid memory address or nil pointer dereference"]
Signed-off-by: Rustin170506 <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #57649 +/- ##
================================================
+ Coverage 72.7907% 73.7750% +0.9843%
================================================
Files 1676 1707 +31
Lines 463750 472989 +9239
================================================
+ Hits 337567 348948 +11381
+ Misses 105323 102632 -2691
- Partials 20860 21409 +549
Flags with carried forward coverage won't be shown. Click here to find out more.
|
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.
🔢 Self-check (PR reviewed by myself and ready for feedback.)
// We allow running jobs to complete normally rather than stopping them, so this nil check | ||
// is expected when jobs finish after the switch. Failed jobs will be handled by the next | ||
// initialization, so we can safely ignore them here. | ||
if pq.syncFields.runningJobs == nil || pq.syncFields.mustRetryJobs == nil { |
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.
For the ["Auto analyze job execution failed"] [category=stats] [recover="assignment to entry in nil map"]
.
/retest |
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: elsa0520, qw4990 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 |
/retest |
In response to a cherrypick label: new pull request created to branch |
What problem does this PR solve?
Issue Number: close #57648
Problem Summary:
What changed and how does it work?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.