many.sim 3.1 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
slguan 已提交
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
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 已提交
52
run_back unique/vnode/back_insert_many.sim
S
slguan 已提交
53 54 55 56 57 58 59 60
sleep 5000

print ======== step3

$x = 0
loop:

print ======== step4
S
Shengliang Guan 已提交
61
system sh/exec.sh -n dnode3 -s stop
S
scripts  
Shengliang Guan 已提交
62
sleep 5000
S
Shengliang Guan 已提交
63
system sh/exec.sh -n dnode3 -s start
S
scripts  
Shengliang Guan 已提交
64
sleep 5000
S
Shengliang Guan 已提交
65 66

print ======== step5
S
Shengliang Guan 已提交
67
system sh/exec.sh -n dnode2 -s stop
S
scripts  
Shengliang Guan 已提交
68
sleep 5000
S
Shengliang Guan 已提交
69 70
system sh/exec.sh -n dnode2 -s start
sleep 5000
S
slguan 已提交
71 72 73 74 75 76 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

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 已提交
105
if $x < 2 then
S
slguan 已提交
106 107 108 109
  $x = $x + 1
  goto loop
endi

S
Shengliang Guan 已提交
110 111 112 113 114 115 116 117
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