many.sim 3.4 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
S
slguan 已提交
11 12 13 14
system sh/cfg.sh -n dnode1 -c numofMpeers -v 1
system sh/cfg.sh -n dnode2 -c numofMpeers -v 1
system sh/cfg.sh -n dnode3 -c numofMpeers -v 1
system sh/cfg.sh -n dnode4 -c numofMpeers -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 20 21 22
system sh/cfg.sh -n dnode1 -c numOfTotalVnodes -v 4
system sh/cfg.sh -n dnode2 -c numOfTotalVnodes -v 4
system sh/cfg.sh -n dnode3 -c numOfTotalVnodes -v 4
system sh/cfg.sh -n dnode4 -c numOfTotalVnodes -v 4
S
scripts  
slguan 已提交
23
system sh/exec_up.sh -n dnode1 -s start
S
slguan 已提交
24 25

sql connect
S
slguan 已提交
26 27
sql create dnode $hostname2
sql create dnode $hostname3
S
scripts  
slguan 已提交
28 29
system sh/exec_up.sh -n dnode2 -s start
system sh/exec_up.sh -n dnode3 -s start
S
slguan 已提交
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
sleep 3000

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 已提交
56
run_back unique/vnode/back_insert_many.sim
S
slguan 已提交
57 58 59
sleep 5000

print ======== step3
S
scripts  
slguan 已提交
60
system sh/exec_up.sh -n dnode2 -s stop
S
scripts  
Shengliang Guan 已提交
61
sleep 5000
S
slguan 已提交
62 63 64 65 66

$x = 0
loop:

print ======== step4
S
scripts  
slguan 已提交
67
system sh/exec_up.sh -n dnode2 -s start
S
scripts  
Shengliang Guan 已提交
68
sleep 5000
S
scripts  
slguan 已提交
69
system sh/exec_up.sh -n dnode3 -s stop
S
scripts  
Shengliang Guan 已提交
70
sleep 5000
S
slguan 已提交
71 72

print ======== step5
S
scripts  
slguan 已提交
73
system sh/exec_up.sh -n dnode3 -s start
S
scripts  
Shengliang Guan 已提交
74
sleep 5000
S
scripts  
slguan 已提交
75
system sh/exec_up.sh -n dnode2 -s stop
S
scripts  
Shengliang Guan 已提交
76
sleep 5000
S
slguan 已提交
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

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 已提交
111
if $x < 2 then
S
slguan 已提交
112 113 114 115
  $x = $x + 1
  goto loop
endi

guanshengliang's avatar
scripts  
guanshengliang 已提交
116 117 118 119 120 121 122 123
system sh/exec_up.sh -n dnode1 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode2 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode3 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode4 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode5 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode6 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode7 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode8 -s stop  -x SIGINT