Skip to content

Commit 0884080

Browse files
committed
enable revive
Signed-off-by: Weizhen Wang <[email protected]>
1 parent 246db24 commit 0884080

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
@@ -253,12 +253,18 @@ ParallelExecuteOperations executes process:
253253
func ParallelExecuteOperations(c *testCase, ops []ddlTestOpExecutor, postOp func() error) error {
254254
perm := rand.Perm(len(ops))
255255
taskCh := make(chan *ddlJobTask, len(ops))
256+
var probability map[int]float64
257+
if isIndexMode {
258+
probability = mapOfDDLKindProbabilityInIndexMode
259+
} else {
260+
probability = mapOfDDLKindProbability
261+
}
256262
for _, idx := range perm {
257263
if c.isStop() {
258264
return nil
259265
}
260266
op := ops[idx]
261-
if rand.Float64() > mapOfDDLKindProbability[op.ddlKind] {
267+
if rand.Float64() > probability[op.ddlKind] {
262268
continue
263269
}
264270
op.executeFunc(op.config, taskCh)

ddl/ddl_ops.go

+27
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,33 @@ var mapOfDDLKindProbability = map[DDLKind]float64{
189189
ddlModifyTableCharsetAndCollate: 0.30,
190190
}
191191

192+
// mapOfDDLKindProbabilityInIndexMode use to control every kind of ddl request execute probability in index mode.
193+
var mapOfDDLKindProbabilityInIndexMode = map[DDLKind]float64{
194+
ddlAddTable: 0.05,
195+
ddlDropTable: 0.05,
196+
197+
ddlAddIndex: 0.85,
198+
ddlDropIndex: 0.5,
199+
200+
ddlAddColumn: 0.2,
201+
ddlModifyColumn: 0.1,
202+
ddlModifyColumn2: 0.1,
203+
ddlDropColumn: 0.1,
204+
205+
ddlCreateView: 0.07,
206+
207+
ddlCreateSchema: 0.02,
208+
ddlDropSchema: 0.02,
209+
ddlRenameTable: 0.12,
210+
ddlRenameIndex: 0.12,
211+
ddlTruncateTable: 0.12,
212+
ddlShardRowID: 0.07,
213+
ddlRebaseAutoID: 0.03,
214+
ddlSetDefaultValue: 0.07,
215+
ddlModifyTableComment: 0.07,
216+
ddlModifyTableCharsetAndCollate: 0.07,
217+
}
218+
192219
type ddlJob struct {
193220
id int
194221
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
@@ -31,6 +31,7 @@ var (
3131
mysqlCompatible = flag.Bool("mysql-compatible", false, "disable TiDB-only features")
3232
testTime = flag.Duration("time", 2*time.Hour, "test time")
3333
output = flag.String("output", "", "output file")
34+
indexMode = flag.Bool("index-mode", false, "test more index operator")
3435
)
3536

3637
func main() {
@@ -49,5 +50,5 @@ func main() {
4950
log.Fatalf("unknown test mode: %s", *mode)
5051
}
5152
mysql.SetLogger(log.Logger())
52-
Run(*dbAddr, *dbName, *concurrency, *tablesToCreate, *mysqlCompatible, testType, *testTime)
53+
Run(*dbAddr, *dbName, *concurrency, *tablesToCreate, *mysqlCompatible, testType, *testTime, *indexMode)
5354
}

0 commit comments

Comments
 (0)