dn3_mn1_vnode_delDir.sim 12.7 KB
Newer Older
H
Hui Li 已提交
1 2 3 4 5 6 7 8 9
system sh/stop_dnodes.sh
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

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
H
Hui Li 已提交
10
system sh/cfg.sh -n dnode4 -c numOfMnodes -v 1
H
Hui Li 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

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

system sh/cfg.sh -n dnode1 -c balanceInterval -v 10
system sh/cfg.sh -n dnode2 -c balanceInterval -v 10
system sh/cfg.sh -n dnode3 -c balanceInterval -v 10
system sh/cfg.sh -n dnode4 -c balanceInterval -v 10

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

system sh/cfg.sh -n dnode1 -c alternativeRole -v 1
system sh/cfg.sh -n dnode2 -c alternativeRole -v 2
system sh/cfg.sh -n dnode3 -c alternativeRole -v 2
system sh/cfg.sh -n dnode4 -c alternativeRole -v 2

S
scripts  
Shengliang Guan 已提交
32 33 34 35 36 37 38 39 40 41
$totalTableNum = 10
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v $totalTableNum
system sh/cfg.sh -n dnode2 -c maxtablesPerVnode -v $totalTableNum
system sh/cfg.sh -n dnode3 -c maxtablesPerVnode -v $totalTableNum
system sh/cfg.sh -n dnode4 -c maxtablesPerVnode -v $totalTableNum

system sh/cfg.sh -n dnode1 -c maxVgroupsPerDb -v 1
system sh/cfg.sh -n dnode2 -c maxVgroupsPerDb -v 1
system sh/cfg.sh -n dnode3 -c maxVgroupsPerDb -v 1
system sh/cfg.sh -n dnode4 -c maxVgroupsPerDb -v 1
H
Hui Li 已提交
42 43 44 45

system sh/cfg.sh -n dnode1 -c arbitrator -v $arbitrator
system sh/cfg.sh -n dnode2 -c arbitrator -v $arbitrator
system sh/cfg.sh -n dnode3 -c arbitrator -v $arbitrator
H
Hui Li 已提交
46
system sh/cfg.sh -n dnode4 -c arbitrator -v $arbitrator
H
Hui Li 已提交
47 48 49 50 51 52 53 54 55

print ============== step0: start tarbitrator
system sh/exec_tarbitrator.sh -s start

print ============== step1: start dnode1, only deploy mnode
system sh/exec.sh -n dnode1 -s start
sleep 3000
sql connect

H
Hui Li 已提交
56
print ============== step2: start dnode2/dnode3/dnode4 and add into cluster , then create database with replica 3, and create table, insert data
H
Hui Li 已提交
57 58 59 60 61 62 63 64 65 66 67
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
system sh/exec.sh -n dnode4 -s start
sql create dnode $hostname2
sql create dnode $hostname3
sql create dnode $hostname4
sleep 3000

$sleepTimer = 3000

$db = db
S
scripts  
Shengliang Guan 已提交
68
sql create database $db replica 3
H
Hui Li 已提交
69 70 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
sql use $db

# create table , insert data
$stb = stb
sql create table $stb (ts timestamp, c1 int) tags(t1 int)
$rowNum = 100
$tblNum = $totalTableNum
$totalRows = 0
$tsStart = 1420041600000

$i = 0
while $i < $tblNum
  $tb = tb . $i
  sql create table $tb using $stb tags( $i )
 
  $x = 0
  while $x < $rowNum
    $ts = $tsStart + $x
    sql insert into $tb values ( $ts + 0a , $x ) ( $ts + 1a , $x ) ( $ts + 2a , $x ) ( $ts + 3a , $x ) ( $ts + 4a , $x ) ( $ts + 5a , $x ) ( $ts + 6a , $x ) ( $ts + 7a , $x ) ( $ts + 8a , $x ) ( $ts + 9a , $x ) ( $ts + 10a , $x ) ( $ts + 11a , $x ) ( $ts + 12a , $x ) ( $ts + 13a , $x ) ( $ts + 14a , $x ) ( $ts + 15a , $x ) ( $ts + 16a , $x ) ( $ts + 17a , $x ) ( $ts + 18a , $x ) ( $ts + 19a , $x ) ( $ts + 20a , $x ) ( $ts + 21a , $x ) ( $ts + 22a , $x ) ( $ts + 23a , $x ) ( $ts + 24a , $x ) ( $ts + 25a , $x ) ( $ts + 26a , $x ) ( $ts + 27a , $x ) ( $ts + 28a , $x ) ( $ts + 29a , $x ) ( $ts + 30a , $x ) ( $ts + 31a , $x ) ( $ts + 32a , $x ) ( $ts + 33a , $x ) ( $ts + 34a , $x ) ( $ts + 25a , $x ) ( $ts + 26a , $x ) ( $ts + 27a , $x ) ( $ts + 28a , $x ) ( $ts + 29a , $x ) ( $ts + 30a , $x ) ( $ts + 31a , $x ) ( $ts + 32a , $x ) ( $ts + 33a , $x ) ( $ts + 34a , $x ) ( $ts + 35a , $x ) ( $ts + 36a , $x ) ( $ts + 37a , $x ) ( $ts + 38a , $x ) ( $ts + 39a , $x ) ( $ts + 40a , $x ) ( $ts + 41a , $x ) ( $ts + 42a , $x ) ( $ts + 43a , $x ) ( $ts + 44a , $x ) ( $ts + 45a , $x ) ( $ts + 46a , $x ) ( $ts + 47a , $x ) ( $ts + 48a , $x ) ( $ts + 49a , $x ) ( $ts + 50a , $x ) ( $ts + 51a , $x ) ( $ts + 52a , $x ) ( $ts + 53a , $x ) ( $ts + 54a , $x ) ( $ts + 55a , $x ) ( $ts + 56a , $x ) ( $ts + 57a , $x ) ( $ts + 58a , $x ) ( $ts + 59a , $x ) 
    $x = $x + 60
  endw 
  $totalRows = $totalRows + $x
  print       info: inserted $x rows into $tb and totalRows: $totalRows
  $i = $i + 1
endw 

sql select count(*) from $stb
sleep 1000
print data00 $data00
if $data00 != $totalRows then
	return -1
endi

print ============== step3: stop dnode4, and remove its vnodeX subdirector 
system sh/exec.sh -n dnode4 -s stop -x SIGINT
sleep $sleepTimer
H
Hui Li 已提交
105 106

$loopCnt = 0
H
Hui Li 已提交
107
wait_dnode4_offline_0:
H
Hui Li 已提交
108 109 110 111 112
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

H
Hui Li 已提交
113 114 115 116 117 118 119 120
sql show dnodes
if $rows != 4 then
  sleep 2000
  goto wait_dnode4_offline_0
endi
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3
H
Hui Li 已提交
121 122
print $data0_4  $data1_4  $data2_4  $data3_4  $data4_4
$dnode1Status = $data4_1  
H
Hui Li 已提交
123 124 125 126 127 128 129 130 131
$dnode2Status = $data4_2
$dnode3Status = $data4_3  
$dnode4Status = $data4_4 

if $dnode4Status != offline then
  sleep 2000
  goto wait_dnode4_offline_0
endi

H
Hui Li 已提交
132 133

$loopCnt = 0
H
Hui Li 已提交
134
wait_dnode4_vgroup_offline:
H
Hui Li 已提交
135 136 137 138 139
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

H
Hui Li 已提交
140 141 142 143 144 145 146 147 148
sql show vgroups
if $rows != 1 then
  sleep 2000
  goto wait_dnode4_vgroup_offline
endi
print show vgroups:
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1  $data5_1  $data6_1  $data7_1  $data8_1  $data9_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2  $data5_2  $data6_2  $data7_2  $data8_2  $data9_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3  $data5_3  $data6_3  $data7_3  $data8_3  $data9_3
S
scripts  
Shengliang Guan 已提交
149 150
$dnode4Vtatus = $data6_2
$dnode3Vtatus = $data9_2
H
Hui Li 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

if $dnode4Vtatus != offline then
  sleep 2000
  goto wait_dnode4_vgroup_offline
endi
if $dnode3Vtatus != master then
  sleep 2000
  goto wait_dnode4_vgroup_offline
endi

system rm -rf ../../../sim/dnode4/data/vnode/*

print ============== step4: restart dnode4, waiting sync end 
system sh/exec.sh -n dnode4 -s start
sleep $sleepTimer
H
Hui Li 已提交
166 167

$loopCnt = 0
H
Hui Li 已提交
168
wait_dnode4_reready:
H
Hui Li 已提交
169 170 171 172 173
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

H
Hui Li 已提交
174 175 176 177 178 179 180 181
sql show dnodes
if $rows != 4 then
  sleep 2000
  goto wait_dnode4_reready
endi
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3
H
Hui Li 已提交
182 183
print $data0_4  $data1_4  $data2_4  $data3_4  $data4_4
$dnode1Status = $data4_1  
H
Hui Li 已提交
184 185 186 187 188 189 190 191 192
$dnode2Status = $data4_2
$dnode3Status = $data4_3  
$dnode4Status = $data4_4 

if $dnode4Status != ready then
  sleep 2000
  goto wait_dnode4_reready
endi

H
Hui Li 已提交
193
$loopCnt = 0
H
Hui Li 已提交
194
wait_dnode4_vgroup_slave:
H
Hui Li 已提交
195 196 197 198 199
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

H
Hui Li 已提交
200 201 202 203 204 205 206 207 208
sql show vgroups
if $rows != 1 then
  sleep 2000
  goto wait_dnode4_vgroup_slave
endi
print show vgroups:
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1  $data5_1  $data6_1  $data7_1  $data8_1  $data9_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2  $data5_2  $data6_2  $data7_2  $data8_2  $data9_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3  $data5_3  $data6_3  $data7_3  $data8_3  $data9_3
S
scripts  
Shengliang Guan 已提交
209 210
$dnode4Vtatus = $data6_2
$dnode3Vtatus = $data9_2
H
Hui Li 已提交
211 212 213 214 215 216 217 218 219 220 221 222

print dnode4Vtatus: $dnode4Vtatus
print dnode3Vtatus: $dnode3Vtatus 
if $dnode4Vtatus != slave then
  sleep 2000
  goto wait_dnode4_vgroup_slave
endi
if $dnode3Vtatus != master then
  sleep 2000
  goto wait_dnode4_vgroup_slave
endi

H
Hui Li 已提交
223 224
print ============== step5: stop dnode3, and remove its vnodeX subdirector 
system sh/exec.sh -n dnode3 -s stop -x SIGINT
H
Hui Li 已提交
225 226
sleep $sleepTimer

H
Hui Li 已提交
227 228 229 230 231 232 233
$loopCnt = 0
wait_dnode3_offline:
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

H
Hui Li 已提交
234 235 236
sql show dnodes
if $rows != 4 then
  sleep 2000
H
Hui Li 已提交
237
  goto wait_dnode3_offline
H
Hui Li 已提交
238 239 240 241 242
endi
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3
print $data0_4  $data1_4  $data2_4  $data3_4  $data4_4
H
Hui Li 已提交
243
$dnode1Status = $data4_1  
H
Hui Li 已提交
244 245 246 247
$dnode2Status = $data4_2
$dnode3Status = $data4_3  
$dnode4Status = $data4_4 

H
Hui Li 已提交
248
if $dnode2Status != ready then
H
Hui Li 已提交
249
  sleep 2000
H
Hui Li 已提交
250
  goto wait_dnode3_offline
H
Hui Li 已提交
251 252 253
endi
if $dnode3Status != offline then
  sleep 2000
H
Hui Li 已提交
254
  goto wait_dnode3_offline
H
Hui Li 已提交
255 256 257
endi
if $dnode4Status != ready then
  sleep 2000
H
Hui Li 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
  goto wait_dnode3_offline
endi

system rm -rf ../../../sim/dnode3/data/vnode/*

print ============== step6: restart dnode3, and check rows
system sh/exec.sh -n dnode3 -s start
sleep $sleepTimer

$loopCnt = 0
wait_dnode3_reready:
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

sql show dnodes
if $rows != 4 then
  sleep 2000
  goto wait_dnode3_reready
endi
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3
print $data0_4  $data1_4  $data2_4  $data3_4  $data4_4
$dnode1Status = $data4_1  
$dnode2Status = $data4_2
$dnode3Status = $data4_3  
$dnode4Status = $data4_4 

if $dnode3Status != ready then
  sleep 2000
  goto wait_dnode3_reready
endi

$loopCnt = 0
wait_dnode3_vgroup_slave:
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
H
Hui Li 已提交
298 299 300 301 302
endi

sql show vgroups
if $rows != 1 then
  sleep 2000
H
Hui Li 已提交
303
  goto wait_dnode3_vgroup_slave
H
Hui Li 已提交
304 305 306 307 308
endi
print show vgroups:
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1  $data5_1  $data6_1  $data7_1  $data8_1  $data9_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2  $data5_2  $data6_2  $data7_2  $data8_2  $data9_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3  $data5_3  $data6_3  $data7_3  $data8_3  $data9_3
S
scripts  
Shengliang Guan 已提交
309 310
$dnode4Vtatus = $data6_2
$dnode3Vtatus = $data9_2
H
Hui Li 已提交
311 312 313 314 315

print dnode4Vtatus: $dnode4Vtatus
print dnode3Vtatus: $dnode3Vtatus 
if $dnode4Vtatus != master then
  sleep 2000
H
Hui Li 已提交
316
  goto wait_dnode3_vgroup_slave
H
Hui Li 已提交
317
endi
H
Hui Li 已提交
318
if $dnode3Vtatus != slave then
H
Hui Li 已提交
319
  sleep 2000
H
Hui Li 已提交
320
  goto wait_dnode3_vgroup_slave
H
Hui Li 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
endi

# check using select
sql select count(*) from $stb
print data00 $data00
if $data00 != $totalRows then
	return -1
endi

sql insert into $tb values ( now , 20000 ) ( now + 1a, 20001 ) ( now + 2a, 20002 )
$totalRows = $totalRows + 3

sql select count(*) from $stb
print data00 $data00
if $data00 != $totalRows then
	return -1
endi

H
Hui Li 已提交
339 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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
print ============== step7: stop dnode2, and remove its vnodeX subdirector 
system sh/exec.sh -n dnode2 -s stop -x SIGINT
sleep $sleepTimer

$loopCnt = 0
wait_dnode2_offline:
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

sql show dnodes
if $rows != 4 then
  sleep 2000
  goto wait_dnode2_offline
endi
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3
print $data0_4  $data1_4  $data2_4  $data3_4  $data4_4
$dnode1Status = $data4_1  
$dnode2Status = $data4_2
$dnode3Status = $data4_3  
$dnode4Status = $data4_4 

if $dnode2Status != offline then
  sleep 2000
  goto wait_dnode2_offline
endi
if $dnode3Status != ready then
  sleep 2000
  goto wait_dnode2_offline
endi
if $dnode4Status != ready then
  sleep 2000
  goto wait_dnode2_offline
endi

system rm -rf ../../../sim/dnode2/data/vnode/*

print ============== step8: restart dnode2, and check rows
system sh/exec.sh -n dnode2 -s start
sleep $sleepTimer

$loopCnt = 0
wait_dnode2_reready:
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

sql show dnodes
if $rows != 4 then
  sleep 2000
  goto wait_dnode2_reready
endi
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3
print $data0_4  $data1_4  $data2_4  $data3_4  $data4_4
$dnode1Status = $data4_1  
$dnode2Status = $data4_2
$dnode3Status = $data4_3  
$dnode4Status = $data4_4 

if $dnode2Status != ready then
  sleep 2000
  goto wait_dnode2_reready
endi

$loopCnt = 0
wait_dnode2_vgroup_slave:
$loopCnt = $loopCnt + 1
if $loopCnt == 10 then 
  return -1
endi

sql show vgroups
if $rows != 1 then
  sleep 2000
  goto wait_dnode2_vgroup_slave
endi
print show vgroups:
print $data0_1  $data1_1  $data2_1  $data3_1  $data4_1  $data5_1  $data6_1  $data7_1  $data8_1  $data9_1
print $data0_2  $data1_2  $data2_2  $data3_2  $data4_2  $data5_2  $data6_2  $data7_2  $data8_2  $data9_2
print $data0_3  $data1_3  $data2_3  $data3_3  $data4_3  $data5_3  $data6_3  $data7_3  $data8_3  $data9_3
S
scripts  
Shengliang Guan 已提交
425 426
$dnode4Vtatus = $data6_2
$dnode3Vtatus = $data9_2
H
Hui Li 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463

print dnode4Vtatus: $dnode4Vtatus
print dnode3Vtatus: $dnode3Vtatus 
if $dnode4Vtatus != master then
  sleep 2000
  goto wait_dnode2_vgroup_slave
endi
if $dnode3Vtatus != slave then
  sleep 2000
  goto wait_dnode2_vgroup_slave
endi

# check using select
sql select count(*) from $stb
print data00 $data00
if $data00 != $totalRows then
	return -1
endi

sql insert into $tb values ( now , 20000 ) ( now + 1a, 20001 ) ( now + 2a, 20002 )
$totalRows = $totalRows + 3

sql select count(*) from $stb
print data00 $data00
if $data00 != $totalRows then
	return -1
endi