replica3_repeat.sim 2.8 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3 4 5 6

system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
system sh/deploy.sh -n dnode4 -i 4
S
scripts  
slguan 已提交
7 8 9 10
system sh/cfg.sh -n dnode1 -c wallevel -v 2
system sh/cfg.sh -n dnode2 -c wallevel -v 2
system sh/cfg.sh -n dnode3 -c wallevel -v 2
system sh/cfg.sh -n dnode4 -c wallevel -v 2
11 12 13 14
system sh/cfg.sh -n dnode1 -c numOfMnodes -v 1
system sh/cfg.sh -n dnode2 -c numOfMnodes -v 1
system sh/cfg.sh -n dnode3 -c numOfMnodes -v 1
system sh/cfg.sh -n dnode4 -c numOfMnodes -v 1
S
Shengliang Guan 已提交
15 16 17 18
system sh/cfg.sh -n dnode1 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode2 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode3 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode4 -c mnodeEqualVnodeNum -v 4
S
slguan 已提交
19

S
Shengliang Guan 已提交
20
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
21 22

sql connect
S
slguan 已提交
23 24 25
sql create dnode $hostname2
sql create dnode $hostname3
sql create dnode $hostname4
S
Shengliang Guan 已提交
26 27 28
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
system sh/exec.sh -n dnode4 -s start
S
Shengliang Guan 已提交
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


$x = 0
step1: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi

sql show dnodes
print dnode1 $data4_1
print dnode2 $data4_2
print dnode3 $data4_3
print dnode4 $data4_4

if $data4_1 != ready then
  goto step1
endi
if $data4_2 != ready then
  goto step1
endi
if $data4_3 != ready then
  goto step1
endi
if $data4_4 != ready then
  goto step1
endi

sql show mnodes
print mnode1 $data2_1
print mnode1 $data2_2
print mnode1 $data2_3
if $data2_1 != master then
  goto step1
endi
S
slguan 已提交
65 66 67 68 69 70 71 72 73

print ========= step1
sql create database db replica 3
sql create table db.tb (ts timestamp, i int)
sql insert into db.tb values(now, 1)
sql select count(*) from db.tb
$lastRows = $rows

print ======== step2
S
scripts  
Shengliang Guan 已提交
74
run_back unique/vnode/back_insert.sim
S
slguan 已提交
75 76 77
sleep 3000

print ======== step3
S
Shengliang Guan 已提交
78
system sh/exec.sh -n dnode2 -s stop
S
slguan 已提交
79 80 81 82 83 84
sleep 5000

$x = 0
loop:

print ======== step4
S
Shengliang Guan 已提交
85
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
86
sleep 5000
S
Shengliang Guan 已提交
87
system sh/exec.sh -n dnode3 -s stop
S
slguan 已提交
88 89 90
sleep 5000

print ======== step5
S
Shengliang Guan 已提交
91
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
92
sleep 5000
S
Shengliang Guan 已提交
93
system sh/exec.sh -n dnode4 -s stop
S
slguan 已提交
94 95 96
sleep 5000

print ======== step6
S
Shengliang Guan 已提交
97
system sh/exec.sh -n dnode4 -s start
S
slguan 已提交
98
sleep 5000
S
Shengliang Guan 已提交
99
system sh/exec.sh -n dnode2 -s stop
S
slguan 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112
sleep 5000

print ======== step7
sql select count(*) from db.tb
print select count(*) from db.tb ==> $data00 $lastRows 
if $data00 <= $lastRows then
  return -1
endi

print ======== step8
$lastRows = $data00
print ======== loop Times $x

S
Shengliang Guan 已提交
113
if $x < 2 then
S
slguan 已提交
114 115 116 117
  $x = $x + 1
  goto loop
endi

S
Shengliang Guan 已提交
118 119 120 121 122 123 124 125
system sh/exec.sh -n dnode1 -s stop  -x SIGINT
system sh/exec.sh -n dnode2 -s stop  -x SIGINT
system sh/exec.sh -n dnode3 -s stop  -x SIGINT
system sh/exec.sh -n dnode4 -s stop  -x SIGINT
system sh/exec.sh -n dnode5 -s stop  -x SIGINT
system sh/exec.sh -n dnode6 -s stop  -x SIGINT
system sh/exec.sh -n dnode7 -s stop  -x SIGINT
system sh/exec.sh -n dnode8 -s stop  -x SIGINT