replica_reduce21.sim 3.2 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3 4 5

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

S
scripts  
slguan 已提交
7 8 9
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
10 11 12
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
S
Shengliang Guan 已提交
13 14 15
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
S
slguan 已提交
16 17

print ========= start dnodes
S
Shengliang Guan 已提交
18
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
19
sql connect
S
slguan 已提交
20
sql create dnode $hostname2
S
Shengliang Guan 已提交
21
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
sleep 3000

print ======== step1 
sql create database d1 replica 2
sql create database d2 replica 2
sql create database d3 replica 2
sql create database d4 replica 2

sql create table d1.t1 (ts timestamp, i int)
sql create table d2.t2 (ts timestamp, i int)
sql create table d3.t3 (ts timestamp, i int)
sql create table d4.t4 (ts timestamp, i int)

sql insert into d2.t2 values(now, 1)
sql insert into d1.t1 values(now, 1)
sql insert into d3.t3 values(now, 1)
sql insert into d4.t4 values(now, 1)
S
scripts  
Shengliang Guan 已提交
39
sleep 1000
S
slguan 已提交
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 65

sql select * from d1.t1
if $rows != 1 then
	return -1
endi

sql select * from d2.t2
if $rows != 1 then
	return -1
endi

sql select * from d3.t3
if $rows != 1 then
	return -1
endi

sql select * from d4.t4
if $rows != 1 then
	return -1
endi

print ======== step2 create d5
sql create database d5 replica 1

print ========= step3 alter d1
sql alter database d1 replica 1
S
slguan 已提交
66
sleep 12000
S
slguan 已提交
67 68 69 70

print ========= step4 query d1
sql insert into d1.t1 values(now, 2)
sql select * from d1.t1
S
scripts  
Shengliang Guan 已提交
71
sleep 1000
S
slguan 已提交
72 73 74 75 76 77 78 79
if $rows != 2 then
	return -1
endi

print ========= step5 query d5
sql create table d5.t5 (ts timestamp, i int)
sql insert into d5.t5 values(now, 1);
sql select * from d5.t5
S
scripts  
Shengliang Guan 已提交
80
sleep 1000
S
slguan 已提交
81 82 83
if $rows != 1 then
	return -1
endi
S
slguan 已提交
84
return
S
slguan 已提交
85 86
print ========= step7 drop d1
sql drop database d1
S
slguan 已提交
87
sleep 5000
S
slguan 已提交
88

S
slguan 已提交
89
sql reset query cache
S
slguan 已提交
90 91 92 93 94
print ========= step8
sql insert into d5.t5 values(now, 2)
sql insert into d2.t2 values(now, 2)
sql insert into d3.t3 values(now, 2)
sql insert into d4.t4 values(now, 2)
S
scripts  
Shengliang Guan 已提交
95
sleep 1000
S
slguan 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

sql select * from d5.t5
if $rows != 2 then
	return -1
endi

sql select * from d2.t2
if $rows != 2 then
	return -1
endi

sql select * from d3.t3
if $rows != 2 then
	return -1
endi

sql select * from d4.t4
if $rows != 2 then
	return -1
endi

print ======== step9 stop dnode2
S
Shengliang Guan 已提交
118
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
119
sleep 5000
S
slguan 已提交
120 121 122 123 124

sql insert into d5.t5 values(now, 3)
sql insert into d2.t2 values(now, 3)
sql insert into d3.t3 values(now, 3)
sql insert into d4.t4 values(now, 3)
S
scripts  
Shengliang Guan 已提交
125
sleep 1000
S
slguan 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

sql select * from d5.t5
if $rows != 3 then
	return -1
endi

sql select * from d2.t2
if $rows != 3 then
	return -1
endi

sql select * from d3.t3
if $rows != 3 then
	return -1
endi

sql select * from d4.t4
if $rows != 3 then
	return -1
endi
S
scripts  
slguan 已提交
146

S
Shengliang Guan 已提交
147 148 149 150 151 152 153 154
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