forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
histogram.go
576 lines (547 loc) · 17.2 KB
/
histogram.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
// Copyright 2017 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package statistics
import (
"fmt"
"math"
"sort"
"strings"
"github.com/juju/errors"
"github.com/pingcap/tidb/context"
"github.com/pingcap/tidb/model"
"github.com/pingcap/tidb/mysql"
"github.com/pingcap/tidb/sessionctx/variable"
"github.com/pingcap/tidb/terror"
"github.com/pingcap/tidb/util/codec"
"github.com/pingcap/tidb/util/sqlexec"
"github.com/pingcap/tidb/util/types"
"github.com/pingcap/tipb/go-tipb"
)
// Histogram represents statistics for a column or index.
type Histogram struct {
ID int64 // Column ID.
NDV int64 // Number of distinct values.
NullCount int64 // Number of null values.
// LastUpdateVersion is the version that this histogram updated last time.
LastUpdateVersion uint64
Buckets []Bucket
}
// Bucket is an element of histogram.
//
// A bucket count is the number of items stored in all previous buckets and the current bucket.
// bucket numbers are always in increasing order.
//
// A bucket value is the greatest item value stored in the bucket.
//
// Repeat is the number of repeats of the bucket value, it can be used to find popular values.
//
type Bucket struct {
Count int64
UpperBound types.Datum
LowerBound types.Datum
Repeats int64
lowerScalar float64
upperScalar float64
commonPfxLen int // when the bucket value type is KindString or KindBytes, commonPfxLen is the common prefix length of the lower bound and upper bound.
}
// SaveToStorage saves the histogram to storage.
func (hg *Histogram) SaveToStorage(ctx context.Context, tableID int64, count int64, isIndex int) error {
exec := ctx.(sqlexec.SQLExecutor)
_, err := exec.Execute("begin")
if err != nil {
return errors.Trace(err)
}
txn := ctx.Txn()
version := txn.StartTS()
replaceSQL := fmt.Sprintf("replace into mysql.stats_meta (version, table_id, count) values (%d, %d, %d)", version, tableID, count)
_, err = exec.Execute(replaceSQL)
if err != nil {
return errors.Trace(err)
}
replaceSQL = fmt.Sprintf("replace into mysql.stats_histograms (table_id, is_index, hist_id, distinct_count, version, null_count) values (%d, %d, %d, %d, %d, %d)", tableID, isIndex, hg.ID, hg.NDV, version, hg.NullCount)
_, err = exec.Execute(replaceSQL)
if err != nil {
return errors.Trace(err)
}
deleteSQL := fmt.Sprintf("delete from mysql.stats_buckets where table_id = %d and is_index = %d and hist_id = %d", tableID, isIndex, hg.ID)
_, err = exec.Execute(deleteSQL)
if err != nil {
return errors.Trace(err)
}
for i, bucket := range hg.Buckets {
var count int64
if i == 0 {
count = bucket.Count
} else {
count = bucket.Count - hg.Buckets[i-1].Count
}
var upperBound types.Datum
upperBound, err = bucket.UpperBound.ConvertTo(ctx.GetSessionVars().StmtCtx, types.NewFieldType(mysql.TypeBlob))
if err != nil {
return errors.Trace(err)
}
var lowerBound types.Datum
lowerBound, err = bucket.LowerBound.ConvertTo(ctx.GetSessionVars().StmtCtx, types.NewFieldType(mysql.TypeBlob))
if err != nil {
return errors.Trace(err)
}
insertSQL := fmt.Sprintf("insert into mysql.stats_buckets(table_id, is_index, hist_id, bucket_id, count, repeats, lower_bound, upper_bound) values(%d, %d, %d, %d, %d, %d, X'%X', X'%X')", tableID, isIndex, hg.ID, i, count, bucket.Repeats, lowerBound.GetBytes(), upperBound.GetBytes())
_, err = exec.Execute(insertSQL)
if err != nil {
return errors.Trace(err)
}
}
_, err = exec.Execute("commit")
return errors.Trace(err)
}
func histogramFromStorage(ctx context.Context, tableID int64, colID int64, tp *types.FieldType, distinct int64, isIndex int, ver uint64, nullCount int64) (*Histogram, error) {
selSQL := fmt.Sprintf("select bucket_id, count, repeats, lower_bound, upper_bound from mysql.stats_buckets where table_id = %d and is_index = %d and hist_id = %d", tableID, isIndex, colID)
rows, _, err := ctx.(sqlexec.RestrictedSQLExecutor).ExecRestrictedSQL(ctx, selSQL)
if err != nil {
return nil, errors.Trace(err)
}
bucketSize := len(rows)
hg := &Histogram{
ID: colID,
NDV: distinct,
LastUpdateVersion: ver,
Buckets: make([]Bucket, bucketSize),
NullCount: nullCount,
}
for i := 0; i < bucketSize; i++ {
bucketID := rows[i].Data[0].GetInt64()
count := rows[i].Data[1].GetInt64()
repeats := rows[i].Data[2].GetInt64()
var upperBound, lowerBound types.Datum
if isIndex == 1 {
lowerBound, upperBound = rows[i].Data[3], rows[i].Data[4]
} else {
lowerBound, err = rows[i].Data[3].ConvertTo(ctx.GetSessionVars().StmtCtx, tp)
if err != nil {
return nil, errors.Trace(err)
}
upperBound, err = rows[i].Data[4].ConvertTo(ctx.GetSessionVars().StmtCtx, tp)
if err != nil {
return nil, errors.Trace(err)
}
}
lowerScalar, upperScalar, commonLength := preCalculateDatumScalar(&lowerBound, &upperBound)
hg.Buckets[bucketID] = Bucket{
Count: count,
UpperBound: upperBound,
LowerBound: lowerBound,
Repeats: repeats,
lowerScalar: lowerScalar,
upperScalar: upperScalar,
commonPfxLen: commonLength,
}
}
for i := 1; i < bucketSize; i++ {
hg.Buckets[i].Count += hg.Buckets[i-1].Count
}
return hg, nil
}
func (hg *Histogram) toString(isIndex bool) string {
strs := make([]string, 0, len(hg.Buckets)+1)
if isIndex {
strs = append(strs, fmt.Sprintf("index:%d ndv:%d", hg.ID, hg.NDV))
} else {
strs = append(strs, fmt.Sprintf("column:%d ndv:%d", hg.ID, hg.NDV))
}
for _, bucket := range hg.Buckets {
upperVal, err := bucket.UpperBound.ToString()
terror.Log(errors.Trace(err))
lowerVal, err := bucket.LowerBound.ToString()
terror.Log(errors.Trace(err))
strs = append(strs, fmt.Sprintf("num: %d\tlower_bound: %s\tupper_bound: %s\trepeats: %d", bucket.Count, lowerVal, upperVal, bucket.Repeats))
}
return strings.Join(strs, "\n")
}
// equalRowCount estimates the row count where the column equals to value.
func (hg *Histogram) equalRowCount(sc *variable.StatementContext, value types.Datum) (float64, error) {
index, match, err := hg.lowerBound(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
if index == len(hg.Buckets) {
return 0, nil
}
if match {
return float64(hg.Buckets[index].Repeats), nil
}
c, err := value.CompareDatum(sc, &hg.Buckets[index].LowerBound)
if err != nil {
return 0, errors.Trace(err)
}
if c < 0 {
return 0, nil
}
return hg.totalRowCount() / float64(hg.NDV), nil
}
// greaterRowCount estimates the row count where the column greater than value.
func (hg *Histogram) greaterRowCount(sc *variable.StatementContext, value types.Datum) (float64, error) {
lessCount, err := hg.lessRowCount(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
eqCount, err := hg.equalRowCount(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
gtCount := hg.totalRowCount() - lessCount - eqCount
if gtCount < 0 {
gtCount = 0
}
return gtCount, nil
}
// greaterAndEqRowCount estimates the row count where the column less than or equal to value.
func (hg *Histogram) greaterAndEqRowCount(sc *variable.StatementContext, value types.Datum) (float64, error) {
greaterCount, err := hg.greaterRowCount(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
eqCount, err := hg.equalRowCount(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
return greaterCount + eqCount, nil
}
// lessRowCount estimates the row count where the column less than value.
func (hg *Histogram) lessRowCount(sc *variable.StatementContext, value types.Datum) (float64, error) {
index, match, err := hg.lowerBound(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
if index == len(hg.Buckets) {
return hg.totalRowCount(), nil
}
curCount := float64(hg.Buckets[index].Count)
prevCount := float64(0)
if index > 0 {
prevCount = float64(hg.Buckets[index-1].Count)
}
lessThanBucketValueCount := curCount - float64(hg.Buckets[index].Repeats)
if match {
return lessThanBucketValueCount, nil
}
c, err := value.CompareDatum(sc, &hg.Buckets[index].LowerBound)
if err != nil {
return 0, errors.Trace(err)
}
if c <= 0 {
return prevCount, nil
}
valueScalar := convertDatumToScalar(&value, hg.Buckets[index].commonPfxLen)
frac := calcFraction(hg.Buckets[index].lowerScalar, hg.Buckets[index].upperScalar, valueScalar)
return prevCount + (lessThanBucketValueCount-prevCount)*frac, nil
}
// lessAndEqRowCount estimates the row count where the column less than or equal to value.
func (hg *Histogram) lessAndEqRowCount(sc *variable.StatementContext, value types.Datum) (float64, error) {
lessCount, err := hg.lessRowCount(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
eqCount, err := hg.equalRowCount(sc, value)
if err != nil {
return 0, errors.Trace(err)
}
return lessCount + eqCount, nil
}
// betweenRowCount estimates the row count where column greater or equal to a and less than b.
func (hg *Histogram) betweenRowCount(sc *variable.StatementContext, a, b types.Datum) (float64, error) {
lessCountA, err := hg.lessRowCount(sc, a)
if err != nil {
return 0, errors.Trace(err)
}
lessCountB, err := hg.lessRowCount(sc, b)
if err != nil {
return 0, errors.Trace(err)
}
if lessCountA >= lessCountB {
return hg.totalRowCount() / float64(hg.NDV), nil
}
return lessCountB - lessCountA, nil
}
func (hg *Histogram) totalRowCount() float64 {
if len(hg.Buckets) == 0 {
return 0
}
return float64(hg.Buckets[len(hg.Buckets)-1].Count)
}
func (hg *Histogram) lowerBound(sc *variable.StatementContext, target types.Datum) (index int, match bool, err error) {
index = sort.Search(len(hg.Buckets), func(i int) bool {
cmp, err1 := hg.Buckets[i].UpperBound.CompareDatum(sc, &target)
if err1 != nil {
err = errors.Trace(err1)
return false
}
if cmp == 0 {
match = true
}
return cmp >= 0
})
return
}
// mergeBuckets is used to merge every two neighbor buckets.
func (hg *Histogram) mergeBuckets(bucketIdx int64) {
curBuck := 0
for i := int64(0); i+1 <= bucketIdx; i += 2 {
hg.Buckets[curBuck] = Bucket{
Count: hg.Buckets[i+1].Count,
UpperBound: hg.Buckets[i+1].UpperBound,
LowerBound: hg.Buckets[i].LowerBound,
Repeats: hg.Buckets[i+1].Repeats,
}
curBuck++
}
if bucketIdx%2 == 0 {
hg.Buckets[curBuck] = hg.Buckets[bucketIdx]
curBuck++
}
hg.Buckets = hg.Buckets[:curBuck]
return
}
// getIncreaseFactor will return a factor of data increasing after the last analysis.
func (hg *Histogram) getIncreaseFactor(totalCount int64) float64 {
columnCount := hg.Buckets[len(hg.Buckets)-1].Count + hg.NullCount
if columnCount == 0 {
// avoid dividing by 0
return 1.0
}
return float64(totalCount) / float64(columnCount)
}
// HistogramToProto converts Histogram to its protobuf representation.
// Note that when this is used, the lower/upper bound in the bucket must be BytesDatum.
func HistogramToProto(hg *Histogram) *tipb.Histogram {
protoHg := &tipb.Histogram{
Ndv: hg.NDV,
}
for _, bucket := range hg.Buckets {
bkt := &tipb.Bucket{
Count: bucket.Count,
LowerBound: bucket.LowerBound.GetBytes(),
UpperBound: bucket.UpperBound.GetBytes(),
Repeats: bucket.Repeats,
}
protoHg.Buckets = append(protoHg.Buckets, bkt)
}
return protoHg
}
// HistogramFromProto converts Histogram from its protobuf representation.
// Note that we will set BytesDatum for the lower/upper bound in the bucket, the decode will
// be after all histograms merged.
func HistogramFromProto(protoHg *tipb.Histogram) *Histogram {
hg := &Histogram{
NDV: protoHg.Ndv,
}
for _, bucket := range protoHg.Buckets {
bkt := Bucket{
Count: bucket.Count,
LowerBound: types.NewBytesDatum(bucket.LowerBound),
UpperBound: types.NewBytesDatum(bucket.UpperBound),
Repeats: bucket.Repeats,
}
hg.Buckets = append(hg.Buckets, bkt)
}
return hg
}
// MergeHistograms merges two histograms.
func MergeHistograms(sc *variable.StatementContext, lh *Histogram, rh *Histogram, bucketSize int) (*Histogram, error) {
if len(lh.Buckets) == 0 {
return rh, nil
}
if len(rh.Buckets) == 0 {
return lh, nil
}
lh.NDV += rh.NDV
lLen := len(lh.Buckets)
cmp, err := lh.Buckets[lLen-1].UpperBound.CompareDatum(sc, &rh.Buckets[0].LowerBound)
if err != nil {
return nil, errors.Trace(err)
}
offset := int64(0)
if cmp == 0 {
lh.NDV--
lh.Buckets[lLen-1].UpperBound = rh.Buckets[0].UpperBound
lh.Buckets[lLen-1].Repeats = rh.Buckets[0].Repeats
lh.Buckets[lLen-1].Count += rh.Buckets[0].Count
offset = rh.Buckets[0].Count
rh.Buckets = rh.Buckets[1:]
}
for len(lh.Buckets) > bucketSize {
lh.mergeBuckets(int64(len(lh.Buckets)) - 1)
}
if len(rh.Buckets) == 0 {
return lh, nil
}
for len(rh.Buckets) > bucketSize {
rh.mergeBuckets(int64(len(rh.Buckets)) - 1)
}
lCount := lh.Buckets[len(lh.Buckets)-1].Count
rCount := rh.Buckets[len(rh.Buckets)-1].Count - offset
lAvg := float64(lCount) / float64(len(lh.Buckets))
rAvg := float64(rCount) / float64(len(rh.Buckets))
for len(lh.Buckets) > 1 && lAvg*2 <= rAvg {
lh.mergeBuckets(int64(len(lh.Buckets)) - 1)
lAvg *= 2
}
for len(rh.Buckets) > 1 && rAvg*2 <= lAvg {
rh.mergeBuckets(int64(len(rh.Buckets)) - 1)
rAvg *= 2
}
for _, bkt := range rh.Buckets {
bkt.Count = bkt.Count + lCount - offset
lh.Buckets = append(lh.Buckets, bkt)
}
for len(lh.Buckets) > bucketSize {
lh.mergeBuckets(int64(len(lh.Buckets)) - 1)
}
return lh, nil
}
// Column represents a column histogram.
type Column struct {
Histogram
Info *model.ColumnInfo
}
func (c *Column) String() string {
return c.Histogram.toString(false)
}
// getIntColumnRowCount estimates the row count by a slice of IntColumnRange.
func (c *Column) getIntColumnRowCount(sc *variable.StatementContext, intRanges []types.IntColumnRange) (float64, error) {
var rowCount float64
for _, rg := range intRanges {
var cnt float64
var err error
if rg.LowVal == math.MinInt64 && rg.HighVal == math.MaxInt64 {
cnt = c.totalRowCount()
} else if rg.LowVal == math.MinInt64 {
cnt, err = c.lessAndEqRowCount(sc, types.NewIntDatum(rg.HighVal))
} else if rg.HighVal == math.MaxInt64 {
cnt, err = c.greaterAndEqRowCount(sc, types.NewIntDatum(rg.LowVal))
} else {
if rg.LowVal == rg.HighVal {
cnt, err = c.equalRowCount(sc, types.NewIntDatum(rg.LowVal))
} else {
cnt, err = c.betweenRowCount(sc, types.NewIntDatum(rg.LowVal), types.NewIntDatum(rg.HighVal+1))
}
}
if err != nil {
return 0, errors.Trace(err)
}
if rg.HighVal-rg.LowVal > 0 && cnt > float64(rg.HighVal-rg.LowVal) {
cnt = float64(rg.HighVal - rg.LowVal)
}
rowCount += cnt
}
if rowCount > c.totalRowCount() {
rowCount = c.totalRowCount()
}
return rowCount, nil
}
// getColumnRowCount estimates the row count by a slice of ColumnRange.
func (c *Column) getColumnRowCount(sc *variable.StatementContext, ranges []*types.ColumnRange) (float64, error) {
var rowCount float64
for _, rg := range ranges {
cmp, err := rg.Low.CompareDatum(sc, &rg.High)
if err != nil {
return 0, errors.Trace(err)
}
if cmp == 0 {
// the point case.
if !rg.LowExcl && !rg.HighExcl {
var cnt float64
cnt, err = c.equalRowCount(sc, rg.Low)
if err != nil {
return 0, errors.Trace(err)
}
rowCount += cnt
}
continue
}
// the interval case.
cnt, err := c.betweenRowCount(sc, rg.Low, rg.High)
if err != nil {
return 0, errors.Trace(err)
}
if rg.LowExcl {
lowCnt, err := c.equalRowCount(sc, rg.Low)
if err != nil {
return 0, errors.Trace(err)
}
cnt -= lowCnt
}
if !rg.HighExcl {
highCnt, err := c.equalRowCount(sc, rg.High)
if err != nil {
return 0, errors.Trace(err)
}
cnt += highCnt
}
rowCount += cnt
}
if rowCount > c.totalRowCount() {
rowCount = c.totalRowCount()
} else if rowCount < 0 {
rowCount = 0
}
return rowCount, nil
}
// Index represents an index histogram.
type Index struct {
Histogram
Info *model.IndexInfo
}
func (idx *Index) String() string {
return idx.Histogram.toString(true)
}
func (idx *Index) getRowCount(sc *variable.StatementContext, indexRanges []*types.IndexRange) (float64, error) {
totalCount := float64(0)
for _, indexRange := range indexRanges {
indexRange.Align(len(idx.Info.Columns))
lb, err := codec.EncodeKey(nil, indexRange.LowVal...)
if err != nil {
return 0, errors.Trace(err)
}
rb, err := codec.EncodeKey(nil, indexRange.HighVal...)
if err != nil {
return 0, errors.Trace(err)
}
if string(lb) == string(rb) {
if !indexRange.LowExclude && !indexRange.HighExclude {
rowCount, err1 := idx.equalRowCount(sc, types.NewBytesDatum(lb))
if err1 != nil {
return 0, errors.Trace(err1)
}
totalCount += rowCount
}
continue
}
if indexRange.LowExclude {
lb = append(lb, 0)
}
if !indexRange.HighExclude {
rb = append(rb, 0)
}
l := types.NewBytesDatum(lb)
r := types.NewBytesDatum(rb)
rowCount, err := idx.betweenRowCount(sc, l, r)
if err != nil {
return 0, errors.Trace(err)
}
totalCount += rowCount
}
if totalCount > idx.totalRowCount() {
totalCount = idx.totalRowCount()
}
return totalCount, nil
}