88 lines
1.6 KiB
Plaintext
88 lines
1.6 KiB
Plaintext
system sh/stop_dnodes.sh
|
|
system sh/deploy.sh -n dnode1 -i 1
|
|
system sh/deploy.sh -n dnode2 -i 2
|
|
|
|
system sh/cfg.sh -n dnode1 -c numOfMnodes -v 2
|
|
system sh/cfg.sh -n dnode2 -c numOfMnodes -v 2
|
|
|
|
system sh/cfg.sh -n dnode1 -c monitor -v 1
|
|
system sh/cfg.sh -n dnode2 -c monitor -v 1
|
|
|
|
print ============== step1
|
|
system sh/exec.sh -n dnode1 -s start
|
|
system sh/exec.sh -n dnode2 -s start
|
|
sql connect
|
|
|
|
print ============== step2
|
|
sql create dnode $hostname2
|
|
|
|
$x = 0
|
|
show2:
|
|
$x = $x + 1
|
|
sleep 1000
|
|
if $x == 20 then
|
|
return -1
|
|
endi
|
|
|
|
sql show mnodes
|
|
print dnode1 ==> $data2_1
|
|
print dnode2 ==> $data2_2
|
|
if $data2_1 != master then
|
|
goto show2
|
|
endi
|
|
if $data2_2 != slave then
|
|
goto show2
|
|
endi
|
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
|
system sh/exec.sh -n dnode2 -s stop -x SIGINT
|
|
|
|
print ============== step3
|
|
system sh/exec.sh -n dnode2 -s start
|
|
sleep 10000
|
|
|
|
system sh/exec.sh -n dnode1 -s start
|
|
sql connect
|
|
|
|
print =============== step4
|
|
sql select * from log.dn1
|
|
$d1_first = $rows
|
|
sql select * from log.dn2
|
|
$d2_first = $rows
|
|
|
|
$x = 0
|
|
show4:
|
|
$x = $x + 1
|
|
sleep 1000
|
|
if $x == 20 then
|
|
return -1
|
|
endi
|
|
|
|
sql show mnodes
|
|
print dnode1 ==> $data2_1
|
|
print dnode2 ==> $data2_2
|
|
if $data2_1 != master then
|
|
goto show4
|
|
endi
|
|
if $data2_2 != slave then
|
|
goto show4
|
|
endi
|
|
|
|
sleep 2000
|
|
sql select * from log.dn1
|
|
$d1_second = $rows
|
|
sql select * from log.dn2
|
|
$d2_second = $rows
|
|
|
|
print dnode1 $d1_first $d1_second
|
|
print dnode2 $d2_first $d2_second
|
|
if $d1_first >= $d1_second then
|
|
return -1
|
|
endi
|
|
|
|
if $d2_first >= $d2_second then
|
|
return -1
|
|
endi
|
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
|
system sh/exec.sh -n dnode2 -s stop -x SIGINT |