-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Expand file tree
/
Copy pathdistsql_test.go
More file actions
148 lines (140 loc) · 5.13 KB
/
distsql_test.go
File metadata and controls
148 lines (140 loc) · 5.13 KB
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
// Copyright 2023 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package distsql_test
import (
"context"
"fmt"
"strings"
"testing"
"github.com/pingcap/tidb/pkg/config"
"github.com/pingcap/tidb/pkg/kv"
"github.com/pingcap/tidb/pkg/sessionctx/vardef"
"github.com/pingcap/tidb/pkg/testkit"
"github.com/stretchr/testify/require"
)
func TestDistsqlPartitionTableConcurrency(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("drop table if exists t1, t2, t3")
tk.MustExec("create table t1(id int primary key , val int)")
partitions := make([]string, 0, 20)
for i := range 20 {
pid := i + 1
partitions = append(partitions, fmt.Sprintf("PARTITION p%d VALUES LESS THAN (%d00)", pid, pid))
}
tk.MustExec("create table t2(id int primary key, val int)" +
"partition by range(id)" +
"(" + strings.Join(partitions[:10], ",") + ")")
tk.MustExec("create table t3(id int primary key, val int)" +
"partition by range(id)" +
"(" + strings.Join(partitions, ",") + ")")
for i := range 20 {
for _, tbl := range []string{"t1", "t2", "t3"} {
tk.MustExec(fmt.Sprintf("insert into %s values(%d, %d)", tbl, i*50, i*50))
}
}
tk.MustExec("analyze table t1, t2, t3")
// non-partitioned table checker
ctx1 := context.WithValue(context.Background(), "CheckSelectRequestHook", func(req *kv.Request) {
require.Equal(t, req.KeyRanges.PartitionNum(), 1)
require.Equal(t, req.Concurrency, 1)
})
// 10-ranges-partitioned table checker
ctx2 := context.WithValue(context.Background(), "CheckSelectRequestHook", func(req *kv.Request) {
require.Equal(t, req.KeyRanges.PartitionNum(), 10)
require.Equal(t, req.Concurrency, 10)
})
// 20-ranges-partitioned table checker
ctx3 := context.WithValue(context.Background(), "CheckSelectRequestHook", func(req *kv.Request) {
require.Equal(t, req.KeyRanges.PartitionNum(), 20)
require.Equal(t, req.Concurrency, vardef.DefDistSQLScanConcurrency)
})
ctxs := []context.Context{ctx1, ctx2, ctx3}
for i, tbl := range []string{"t1", "t2", "t3"} {
ctx := ctxs[i]
// If order by is added here, the concurrency is always equal to 1.
// Because we will use different kv.Request for each partition in TableReader.
tk.MustQueryWithContext(ctx, fmt.Sprintf("select * from %s limit 1", tbl))
tk.MustQueryWithContext(ctx, fmt.Sprintf("select * from %s limit 5", tbl))
tk.MustQueryWithContext(ctx, fmt.Sprintf("select * from %s limit 1", tbl))
tk.MustQueryWithContext(ctx, fmt.Sprintf("select * from %s limit 5", tbl))
}
}
func TestDistSQLSharedKVRequestRace(t *testing.T) {
// Test for issue https://github.com/pingcap/tidb/issues/60175
store := testkit.CreateMockStore(t)
originCfg := config.GetGlobalConfig()
config.UpdateGlobal(func(conf *config.Config) {
conf.Labels = map[string]string{
"zone": "us-east-1a",
}
})
require.Equal(t, "us-east-1a", config.GetGlobalConfig().GetTiKVConfig().TxnScope)
defer config.UpdateGlobal(func(conf *config.Config) {
*conf = *originCfg
})
tk := testkit.NewTestKit(t, store)
tk.MustExec("set session tidb_partition_prune_mode='dynamic'")
tk.MustExec("set session tidb_enable_index_merge = ON")
tk.MustExec("use test;")
tk.MustExec("drop table if exists t;")
tk.MustExec(`create table t (
a int,
b int,
c int,
d int,
primary key (a, d),
index ib(b),
index ic(c)
)
partition by range(d) (
partition p1 values less than(1),
partition p2 values less than(2),
partition p3 values less than(3),
partition p4 values less than (4)
)`)
tk.MustExec("begin")
for i := 0; i < 1000; i++ {
tk.MustExec(fmt.Sprintf("insert into t values (%d, %d, %d, %d);", i*1000, i*1000, i*1000, i%4))
}
tk.MustExec("commit")
expects := make([]string, 0, 500)
for i := 0; i < 1000; i++ {
expect := fmt.Sprintf("%d %d %d %d", i*1000, i*1000, i*1000, i%4)
expects = append(expects, expect)
if len(expects) == 500 {
break
}
}
replicaReadModes := []string{
"leader",
"follower",
"leader-and-follower",
"closest-adaptive",
"closest-replicas",
}
for _, mode := range replicaReadModes {
tk.MustExec(fmt.Sprintf("set session tidb_replica_read = '%s'", mode))
// Few iterations suffice: Go's race detector is deterministic (catches on first
// occurrence), and RequestBuilder.used guards reuse at build time. Keep this low
// to stay well under the Bazel "moderate" timeout with -race enabled.
for range 5 {
// index lookup
tk.MustQuery("select * from t force index(ic) order by c asc limit 500").Check(testkit.Rows(expects...))
// index merge
tk.MustQuery("select * from t where b >= 0 or c >= 0 order by c asc limit 500").Check(testkit.Rows(expects...))
}
}
}