replica_add23.sim 7.2 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
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
slguan 已提交
17

S
Shengliang Guan 已提交
18 19 20 21
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 已提交
22

S
TD-2500  
Shengliang Guan 已提交
23 24 25 26 27
system sh/cfg.sh -n dnode1 -c balanceInterval -v 1
system sh/cfg.sh -n dnode2 -c balanceInterval -v 1
system sh/cfg.sh -n dnode3 -c balanceInterval -v 1
system sh/cfg.sh -n dnode4 -c balanceInterval -v 1

S
slguan 已提交
28
print ========= start dnodes
S
Shengliang Guan 已提交
29
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
30
sql connect
S
slguan 已提交
31
sql create dnode $hostname2
S
Shengliang Guan 已提交
32
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
33
sql create dnode $hostname3
S
Shengliang Guan 已提交
34
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
35
sql create dnode $hostname4
S
Shengliang Guan 已提交
36
system sh/exec.sh -n dnode4 -s start
S
slguan 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
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)

S
scripts  
Shengliang Guan 已提交
50 51 52 53
sql insert into d1.t1 values(1588262400001, 1)
sql insert into d2.t2 values(1588262400001, 1)
sql insert into d3.t3 values(1588262400001, 1)
sql insert into d4.t4 values(1588262400001, 1)
S
scripts  
Shengliang Guan 已提交
54
sleep 1000
S
slguan 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80

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
sql alter database d1 replica 3
sql alter database d2 replica 3
sql alter database d3 replica 3
sql alter database d4 replica 3
S
TD-2500  
Shengliang Guan 已提交
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 111 112 113

$x = 0
a1: 
	$x = $x + 1
	sleep 2000
	if $x == 20 then
	  return -1
	endi
	
sql show d1.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto a1
endi

sql show d2.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto a1
endi

sql show d3.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto a1
endi

sql show d4.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto a1
endi

S
slguan 已提交
114
sleep 10000
S
slguan 已提交
115 116 117 118 119 120 121 122 123 124 125

print ======== step3
$x = 0
show3: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then 
		return -1
	endi
	
sql show dnodes
S
slguan 已提交
126 127 128 129
print dnode1 ==> openVnodes: $data2_1
print dnode2 ==> openVnodes: $data2_2
print dnode3 ==> openVnodes: $data2_3
print dnode4 ==> openVnodes: $data2_4
S
slguan 已提交
130

S
slguan 已提交
131
if $data2_1 != 0 then
S
slguan 已提交
132
   return -1
S
slguan 已提交
133 134
endi

S
slguan 已提交
135
if $data2_2 != 4 then
S
slguan 已提交
136
   return -1
S
slguan 已提交
137 138
endi

S
slguan 已提交
139
if $data2_3 != 4 then
S
slguan 已提交
140
   return -1
S
slguan 已提交
141 142
endi

S
slguan 已提交
143
if $data2_3 != 4 then
S
slguan 已提交
144
   return -1
S
slguan 已提交
145 146 147
endi

print ======== step4
S
scripts  
Shengliang Guan 已提交
148 149 150 151
sql insert into d1.t1 values(1588262400002, 2)
sql insert into d2.t2 values(1588262400002, 2)
sql insert into d3.t3 values(1588262400002, 2)
sql insert into d4.t4 values(1588262400002, 2)
S
scripts  
Shengliang Guan 已提交
152
sleep 1000
S
slguan 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173

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

S
slguan 已提交
174 175 176
sql reset query cache
sleep 1000

S
slguan 已提交
177
print ========= step5 
S
Shengliang Guan 已提交
178
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
slguan 已提交
179
sleep 5000
S
slguan 已提交
180

S
scripts  
Shengliang Guan 已提交
181 182 183 184
sql insert into d1.t1 values(1588262400003, 3)
sql insert into d2.t2 values(1588262400003, 3)
sql insert into d3.t3 values(1588262400003, 3)
sql insert into d4.t4 values(1588262400003, 3)
S
scripts  
Shengliang Guan 已提交
185
sleep 1000
S
slguan 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207

sql select * from d1.t1
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

print ========= step6
S
Shengliang Guan 已提交
208
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
209
sleep 5000
S
TD-2500  
Shengliang Guan 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242

$x = 0
step6: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then
	  return -1
	endi
	
sql show d1.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step6
endi

sql show d2.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step6
endi

sql show d3.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step6
endi

sql show d4.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step6
endi

S
Shengliang Guan 已提交
243
system sh/exec.sh -n dnode3 -s stop -x SIGINT
S
slguan 已提交
244 245
sleep 5000

S
scripts  
Shengliang Guan 已提交
246 247 248 249
sql insert into d1.t1 values(1588262400004, 4)
sql insert into d2.t2 values(1588262400004, 4)
sql insert into d3.t3 values(1588262400004, 4)
sql insert into d4.t4 values(1588262400004, 4)
S
scripts  
Shengliang Guan 已提交
250
sleep 1000
S
slguan 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

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

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

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

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

print ========= step7
S
Shengliang Guan 已提交
273
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
274
sleep 5000
S
TD-2500  
Shengliang Guan 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307

$x = 0
step7: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then
	  return -1
	endi
	
sql show d1.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step7
endi

sql show d2.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step7
endi

sql show d3.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step7
endi

sql show d4.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step7
endi

S
Shengliang Guan 已提交
308
system sh/exec.sh -n dnode4 -s stop -x SIGINT
S
slguan 已提交
309 310
sleep 5000

S
scripts  
Shengliang Guan 已提交
311 312 313 314
sql insert into d1.t1 values(1588262400005, 5)
sql insert into d2.t2 values(1588262400005, 5)
sql insert into d3.t3 values(1588262400005, 5)
sql insert into d4.t4 values(1588262400005, 5)
S
scripts  
Shengliang Guan 已提交
315
sleep 1000
S
slguan 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337

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

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

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

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

print ========= step8
S
Shengliang Guan 已提交
338
system sh/exec.sh -n dnode4 -s start
S
slguan 已提交
339
sleep 5000
S
TD-2500  
Shengliang Guan 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372

$x = 0
step8: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then
	  return -1
	endi
	
sql show d1.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step8
endi

sql show d2.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step8
endi

sql show d3.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step8
endi

sql show d4.vgroups 
print online vnodes $data03
if $data03 != 3 then
	goto step8
endi

S
Shengliang Guan 已提交
373
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
slguan 已提交
374 375
sleep 5000

S
scripts  
Shengliang Guan 已提交
376 377 378 379
sql insert into d1.t1 values(1588262400006, 6)
sql insert into d2.t2 values(1588262400006, 6)
sql insert into d3.t3 values(1588262400006, 6)
sql insert into d4.t4 values(1588262400006, 6)
S
scripts  
Shengliang Guan 已提交
380
sleep 1000
S
slguan 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399

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

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

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

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

S
Shengliang Guan 已提交
402 403 404 405 406 407 408 409
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