replica2_basic2.sim 4.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
slguan 已提交
7

S
scripts  
slguan 已提交
8 9 10 11
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 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

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

system sh/cfg.sh -n dnode1 -c mgmtEqualVnodeNum -v 4
system sh/cfg.sh -n dnode2 -c mgmtEqualVnodeNum -v 4
system sh/cfg.sh -n dnode3 -c mgmtEqualVnodeNum -v 4
system sh/cfg.sh -n dnode4 -c mgmtEqualVnodeNum -v 4

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

print ========= start dnodes
S
scripts  
slguan 已提交
29
system sh/exec_up.sh -n dnode1 -s start
guanshengliang's avatar
scripts  
guanshengliang 已提交
30
sleep 3000
S
slguan 已提交
31
sql connect
S
slguan 已提交
32
sql create dnode $hostname2
S
scripts  
slguan 已提交
33
system sh/exec_up.sh -n dnode2 -s start
S
slguan 已提交
34
sql create dnode $hostname3
S
scripts  
slguan 已提交
35
system sh/exec_up.sh -n dnode3 -s start
S
slguan 已提交
36 37 38 39 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 66 67 68 69 70 71 72 73 74 75 76
sleep 3000

sql reset query cache

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 d1.t1 values(now, 1)
sql insert into d2.t2 values(now, 1)
sql insert into d3.t3 values(now, 1)
sql insert into d4.t4 values(now, 1)

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

sql show dnodes
S
scripts  
slguan 已提交
77 78 79
print dnode1 ==> openVnodes: $data2_1
print dnode2 ==> openVnodes: $data2_2
print dnode3 ==> openVnodes: $data2_3
S
slguan 已提交
80

S
scripts  
slguan 已提交
81
if $data2_1 != 0 then
S
slguan 已提交
82 83 84
  return -1
endi

S
scripts  
slguan 已提交
85
if $data2_2 != 4 then
S
slguan 已提交
86 87 88
  return -1
endi

S
scripts  
slguan 已提交
89
if $data2_3 != 4 then
S
slguan 已提交
90 91 92
  return -1
endi

guanshengliang's avatar
scripts  
guanshengliang 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105
if $data4_1 != ready then
  print dnode1 status should ready but is $data4_1
  return -1
endi

if $data4_2 != ready then
  return -1
endi

if $data4_3 != ready then
  return -1
endi

S
slguan 已提交
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
print ========= step2
sql insert into d1.t1 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)

sql select * from d1.t1
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 ========= step3 
S
scripts  
slguan 已提交
133 134
system sh/exec_up.sh -n dnode2 -s stop -x SIGINT
sleep 5000
S
slguan 已提交
135

S
scripts  
slguan 已提交
136 137 138 139
#sql insert into d1.t1 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
slguan 已提交
140 141

sql select * from d1.t1
S
scripts  
slguan 已提交
142
if $rows != 2 then
S
slguan 已提交
143 144 145 146
	return -1
endi

sql select * from d2.t2
S
scripts  
slguan 已提交
147
if $rows != 2 then
S
slguan 已提交
148 149 150 151
	return -1
endi

sql select * from d3.t3
S
scripts  
slguan 已提交
152
if $rows != 2 then
S
slguan 已提交
153 154 155 156
	return -1
endi

sql select * from d4.t4
S
scripts  
slguan 已提交
157
if $rows != 2 then
S
slguan 已提交
158 159 160 161
	return -1
endi

print ========= step4
S
scripts  
slguan 已提交
162 163 164
system sh/exec_up.sh -n dnode2 -s start
sleep 5000
system sh/exec_up.sh -n dnode3 -s stop -x SIGINT
S
slguan 已提交
165 166
sleep 5000

S
scripts  
slguan 已提交
167 168 169 170
#sql insert into d1.t1 values(now, 4)
#sql insert into d2.t2 values(now, 4)
#sql insert into d3.t3 values(now, 4)
#sql insert into d4.t4 values(now, 4)
S
slguan 已提交
171 172

sql select * from d1.t1
S
scripts  
slguan 已提交
173
if $rows != 2 then
S
slguan 已提交
174 175 176 177
	return -1
endi

sql select * from d2.t2
S
scripts  
slguan 已提交
178
if $rows != 2 then
S
slguan 已提交
179 180 181 182
	return -1
endi

sql select * from d3.t3
S
scripts  
slguan 已提交
183
if $rows != 2 then
S
slguan 已提交
184 185 186 187
	return -1
endi

sql select * from d4.t4
S
scripts  
slguan 已提交
188
if $rows != 2 then
S
slguan 已提交
189 190 191 192
	return -1
endi

print ========= step5
S
scripts  
slguan 已提交
193
system sh/exec_up.sh -n dnode3 -s start
S
slguan 已提交
194 195 196 197 198 199 200 201
sleep 5000

sql insert into d1.t1 values(now, 5)
sql insert into d2.t2 values(now, 5)
sql insert into d3.t3 values(now, 5)
sql insert into d4.t4 values(now, 5)

sql select * from d1.t1
S
scripts  
slguan 已提交
202
if $rows != 3 then
S
slguan 已提交
203 204 205 206
	return -1
endi

sql select * from d2.t2
S
scripts  
slguan 已提交
207
if $rows != 3 then
S
slguan 已提交
208 209 210 211
	return -1
endi

sql select * from d3.t3
S
scripts  
slguan 已提交
212
if $rows != 3 then
S
slguan 已提交
213 214 215 216
	return -1
endi

sql select * from d4.t4
S
scripts  
slguan 已提交
217
if $rows != 3 then
S
slguan 已提交
218
	return -1
S
scripts  
slguan 已提交
219 220 221 222 223 224 225 226 227 228
endi

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