many.sim 3.5 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
Shengliang Guan 已提交
19
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
20 21

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

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 已提交
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

print ========= step1
sql create database db1 replica 2 
sql create database db2 replica 2 
sql create database db3 replica 2 
sql create database db4 replica 2 
sql create table db1.tb1 (ts timestamp, i int)
sql create table db2.tb2 (ts timestamp, i int)
sql create table db3.tb3 (ts timestamp, i int)
sql create table db4.tb4 (ts timestamp, i int)
sql insert into db1.tb1 values(now, 1)
sql insert into db2.tb2 values(now, 1)
sql insert into db3.tb3 values(now, 1)
sql insert into db4.tb4 values(now, 1)

sql select count(*) from db1.tb1
$lastRows1 = $rows
sql select count(*) from db2.tb2
$lastRows2 = $rows
sql select count(*) from db3.tb3
$lastRows3 = $rows
sql select count(*) from db4.tb4
$lastRows4 = $rows

print ======== step2
S
scripts  
Shengliang Guan 已提交
82
run_back unique/vnode/back_insert_many.sim
H
Haojun Liao 已提交
83
sleep 3000
S
slguan 已提交
84 85 86 87 88 89 90

print ======== step3

$x = 0
loop:

print ======== step4
S
Shengliang Guan 已提交
91
system sh/exec.sh -n dnode3 -s stop
H
Haojun Liao 已提交
92
sleep 3000
S
Shengliang Guan 已提交
93
system sh/exec.sh -n dnode3 -s start
H
Haojun Liao 已提交
94
sleep 3000
S
Shengliang Guan 已提交
95 96

print ======== step5
S
Shengliang Guan 已提交
97
system sh/exec.sh -n dnode2 -s stop
H
Haojun Liao 已提交
98
sleep 3000
S
Shengliang Guan 已提交
99
system sh/exec.sh -n dnode2 -s start
H
Haojun Liao 已提交
100
sleep 3000
S
slguan 已提交
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

print ======== step6
sql select count(*) from db1.tb1
print select count(*) from db1.tb1 ==> $data00 $lastRows1 
if $data00 <= $lastRows1 then
  return -1
endi
$lastRows1 = $data00

sql select count(*) from db2.tb2
print select count(*) from db2.tb2 ==> $data00 $lastRows2 
if $data00 <= $lastRows2 then
  return -1
endi
$lastRows2 = $data00

sql select count(*) from db3.tb3
print select count(*) from  db3.tb3 ==> $data00 $lastRows3 
if $data00 <= $lastRows3 then
  return -1
endi
$lastRows3 = $data00

sql select count(*) from db4.tb4
print select count(*) from  db4.tb4 ==> $data00 $lastRows4 
if $data00 <= $lastRows4 then
  return -1
endi
$lastRows4 = $data00

print ======== step7

print ======== loop Times $x

S
scripts  
Shengliang Guan 已提交
135
if $x < 2 then
S
slguan 已提交
136 137 138 139
  $x = $x + 1
  goto loop
endi

S
Shengliang Guan 已提交
140 141 142 143 144 145 146 147
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