Skip to content

Commit

Permalink
statistics: kill in time when to run topnStatsMergeWorker and improve…
Browse files Browse the repository at this point in the history
… memory (#45765) (#45767)

close #45706
  • Loading branch information
ti-chi-bot authored Aug 10, 2023
1 parent 8d62c87 commit ece169b
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions statistics/merge_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,16 +99,7 @@ func (worker *topnStatsMergeWorker) Run(timeZone *time.Location, isIndex bool,
return
}
partNum := len(allTopNs)
checkNum := len(checkTopNs)
topNsNum := make([]int, checkNum)
removeVals := make([][]TopNMeta, partNum)
for i, topN := range checkTopNs {
if topN == nil {
topNsNum[i] = 0
continue
}
topNsNum[i] = len(topN.TopN)
}
// Different TopN structures may hold the same value, we have to merge them.
counter := make(map[hack.MutableString]float64)
// datumMap is used to store the mapping from the string type to datum type.
Expand Down Expand Up @@ -136,6 +127,11 @@ func (worker *topnStatsMergeWorker) Run(timeZone *time.Location, isIndex bool,
// 1. Check the topN first.
// 2. If the topN doesn't contain the value corresponding to encodedVal. We should check the histogram.
for j := 0; j < partNum; j++ {
if atomic.LoadUint32(worker.killed) == 1 {
resp.Err = errors.Trace(ErrQueryInterrupted)
worker.respCh <- resp
return
}
if (j == i && version >= 2) || allTopNs[j].findTopN(val.Encoded) != -1 {
continue
}
Expand Down

0 comments on commit ece169b

Please sign in to comment.