Skip to content
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

statistic: fix panic when building topN #47928

Merged
merged 12 commits into from
Oct 25, 2023
38 changes: 37 additions & 1 deletion pkg/statistics/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ import (
"github.com/pingcap/tidb/pkg/types"
"github.com/pingcap/tidb/pkg/util/codec"
"github.com/pingcap/tidb/pkg/util/collate"
"github.com/pingcap/tidb/pkg/util/logutil"
"github.com/pingcap/tidb/pkg/util/memory"
"go.uber.org/zap"
)

// SortedBuilder is used to build histograms for PK and index.
Expand Down Expand Up @@ -373,12 +375,46 @@ func BuildHistAndTopN(
if err != nil {
return nil, nil, errors.Trace(err)
}
// For debugging invalid sample data.
var (
foundTwice bool
firstTimeSample types.Datum
)
for j := 0; j < len(topNList); j++ {
if bytes.Equal(sampleBytes, topNList[j].Encoded) {
// find the same value in topn: need to skip over this value in samples
// This should never happen, but we met this panic before, so we add this check here.
// See: https://github.com/pingcap/tidb/issues/35948
if foundTwice {
datumString, err := firstTimeSample.ToString()
if err != nil {
logutil.BgLogger().With(
zap.String("category", "stats"),
).Error("try to convert datum to string failed", zap.Error(err))
}

logutil.BgLogger().With(
zap.String("category", "stats"),
).Warn(
"invalid sample data",
zap.Bool("isColumn", isColumn),
zap.Int64("columnID", id),
zap.String("datum", datumString),
zap.Binary("sampleBytes", sampleBytes),
zap.Binary("topNBytes", topNList[j].Encoded),
)
Rustin170506 marked this conversation as resolved.
Show resolved Hide resolved
// NOTE: if we don't return here, we may meet panic in the following code.
// The i may decrease to a negative value.
// We haven't fix the issue here, because we don't know how to
// remove the invalid sample data from the samples.
break
}
// First time to find the same value in topN: need to record the sample data for debugging.
firstTimeSample = samples[i].Value
// Found the same value in topn: need to skip over this value in samples.
copy(samples[i:], samples[uint64(i)+topNList[j].Count:])
samples = samples[:uint64(len(samples))-topNList[j].Count]
i--
foundTwice = true
continue
}
}
Expand Down