Skip to content

Commit 4d74484

Browse files
committed
add indexMode to test index operator
Signed-off-by: Weizhen Wang <[email protected]>
1 parent 621445d commit 4d74484

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

ddl/ddl.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,18 @@ ParallelExecuteOperations executes process:
249249
func ParallelExecuteOperations(c *testCase, ops []ddlTestOpExecutor, postOp func() error) error {
250250
perm := rand.Perm(len(ops))
251251
taskCh := make(chan *ddlJobTask, len(ops))
252+
var probability map[int]float64
253+
if isIndexMode {
254+
probability = mapOfDDLKindProbabilityInIndexMode
255+
} else {
256+
probability = mapOfDDLKindProbability
257+
}
252258
for _, idx := range perm {
253259
if c.isStop() {
254260
return nil
255261
}
256262
op := ops[idx]
257-
if rand.Float64() > mapOfDDLKindProbability[op.ddlKind] {
263+
if rand.Float64() > probability[op.ddlKind] {
258264
continue
259265
}
260266
op.executeFunc(op.config, taskCh)

ddl/ddl_ops.go

+27
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,33 @@ var mapOfDDLKindProbability = map[DDLKind]float64{
206206
ddlSetTiflashReplica: 0.30,
207207
}
208208

209+
// mapOfDDLKindProbabilityInIndexMode use to control every kind of ddl request execute probability in index mode.
210+
var mapOfDDLKindProbabilityInIndexMode = map[DDLKind]float64{
211+
ddlAddTable: 0.05,
212+
ddlDropTable: 0.05,
213+
214+
ddlAddIndex: 0.85,
215+
ddlDropIndex: 0.5,
216+
217+
ddlAddColumn: 0.2,
218+
ddlModifyColumn: 0.1,
219+
ddlModifyColumn2: 0.1,
220+
ddlDropColumn: 0.1,
221+
222+
ddlCreateView: 0.07,
223+
224+
ddlCreateSchema: 0.02,
225+
ddlDropSchema: 0.02,
226+
ddlRenameTable: 0.12,
227+
ddlRenameIndex: 0.12,
228+
ddlTruncateTable: 0.12,
229+
ddlShardRowID: 0.07,
230+
ddlRebaseAutoID: 0.03,
231+
ddlSetDefaultValue: 0.07,
232+
ddlModifyTableComment: 0.07,
233+
ddlModifyTableCharsetAndCollate: 0.07,
234+
}
235+
209236
type ddlJob struct {
210237
id int
211238
schemaName string

ddl/run.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
var defaultPushMetricsInterval = 15 * time.Second
1818
var enableTransactionTestFlag = "0"
1919
var enableTransactionTest = false
20+
var isIndexMode = false
2021

2122
func init() {
2223
if enableTransactionTestFlag == "1" {
@@ -35,7 +36,8 @@ func OpenDB(dsn string, maxIdleConns int) (*sql.DB, error) {
3536
return db, nil
3637
}
3738

38-
func Run(dbAddr string, dbName string, concurrency int, tablesToCreate int, mysqlCompatible bool, testTp DDLTestType, testTime time.Duration) {
39+
func Run(dbAddr string, dbName string, concurrency int, tablesToCreate int, mysqlCompatible bool, testTp DDLTestType, testTime time.Duration, indexMode bool) {
40+
isIndexMode = indexMode
3941
wrapCtx := context.WithCancel
4042
if testTime > 0 {
4143
wrapCtx = func(ctx context.Context) (context.Context, context.CancelFunc) {

main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ var (
3434
mysqlCompatible = flag.Bool("mysql-compatible", false, "disable TiDB-only features")
3535
testTime = flag.Duration("time", 2*time.Hour, "test time")
3636
output = flag.String("output", "", "output file")
37+
indexMode = flag.Bool("index-mode", false, "test more index operator")
3738
)
3839

3940
func prepareEnv() {
@@ -74,5 +75,5 @@ func main() {
7475
log.Fatalf("unknown test mode: %s", *mode)
7576
}
7677
prepareEnv()
77-
Run(*dbAddr, *dbName, *concurrency, *tablesToCreate, *mysqlCompatible, testType, *testTime)
78+
Run(*dbAddr, *dbName, *concurrency, *tablesToCreate, *mysqlCompatible, testType, *testTime, *indexMode)
7879
}

0 commit comments

Comments
 (0)