delete.sim 2.6 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3 4
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
S
slguan 已提交
5

S
scripts  
slguan 已提交
6 7 8
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
9 10 11
system sh/cfg.sh -n dnode1 -c numOfMnodes -v 3
system sh/cfg.sh -n dnode2 -c numOfMnodes -v 3
system sh/cfg.sh -n dnode3 -c numOfMnodes -v 3
S
slguan 已提交
12 13 14
system sh/cfg.sh -n dnode1 -c numOfTotalVnodes -v 10
system sh/cfg.sh -n dnode2 -c numOfTotalVnodes -v 10
system sh/cfg.sh -n dnode3 -c numOfTotalVnodes -v 10
S
Shengliang Guan 已提交
15 16 17 18 19 20
system sh/cfg.sh -n dnode1 -c maxVgroupsPerDb -v 2
system sh/cfg.sh -n dnode2 -c maxVgroupsPerDb -v 2
system sh/cfg.sh -n dnode3 -c maxVgroupsPerDb -v 2
system sh/cfg.sh -n dnode1 -c maxTablesPerVnode -v 1000
system sh/cfg.sh -n dnode2 -c maxTablesPerVnode -v 1000
system sh/cfg.sh -n dnode3 -c maxTablesPerVnode -v 1000
S
slguan 已提交
21 22

print ========= start dnodes
S
Shengliang Guan 已提交
23
system sh/exec.sh -n dnode1 -s start
S
scripts  
Shengliang Guan 已提交
24
sleep 3000
S
slguan 已提交
25
sql connect
S
slguan 已提交
26
sql create dnode $hostname2
S
Shengliang Guan 已提交
27
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
28
sql create dnode $hostname3
S
Shengliang Guan 已提交
29
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
30 31

print ======== step1 
S
Shengliang Guan 已提交
32
sql create database db replica 3 blocks 2
S
slguan 已提交
33 34 35 36
sql create table db.mt (ts timestamp, tbcol int) TAGS(tgcol int)

$tbPrefix = db.t
$i = 0
S
scripts  
Shengliang Guan 已提交
37
while $i < 2000
S
slguan 已提交
38 39 40 41 42
  $tb = $tbPrefix . $i
  sql create table $tb using db.mt tags( $i )
  $i = $i + 1
endw 

S
scripts  
Shengliang Guan 已提交
43 44
sleep 2500

S
scripts  
Shengliang Guan 已提交
45 46 47 48 49
sql show db.vgroups
if $rows != 2 then 
  return -1
endi 

S
slguan 已提交
50 51 52 53 54 55
print ======== step2
sql drop database db
sql show databases
if $rows != 0 then 
  return -1
endi 
guanshengliang's avatar
scripts  
guanshengliang 已提交
56

S
scripts  
Shengliang Guan 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
sleep 3000
sql show dnodes
print dnode1 openVnodes $data2_1
print dnode2 openVnodes $data2_2
print dnode3 openVnodes $data2_3
if $data2_1 != 0 then
	return -1
endi
if $data2_2 != 0 then
	return -1
endi
if $data2_3 != 0 then
	return -1
endi

print ======== step3

S
Shengliang Guan 已提交
74 75 76
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
S
scripts  
Shengliang Guan 已提交
77

S
scripts  
Shengliang Guan 已提交
78
sleep 5000
S
Shengliang Guan 已提交
79 80 81
system sh/exec.sh -n dnode1 -s start
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
S
scripts  
Shengliang Guan 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

$x = 0
step3: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then
	  return -1
	endi

sql show mnodes
print dnode1 role $data2_1
if $data2_1 != master then
  goto step3
endi

sleep 1000

S
Shengliang Guan 已提交
99 100 101 102 103 104 105 106
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