TDengine/tests/script/unique/db/delete.sim

99 lines
2.4 KiB
Text
Raw Normal View History

2020-04-19 15:28:22 +00:00
system sh/stop_dnodes.sh
2020-04-29 09:30:03 +00:00
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
2020-04-19 15:28:22 +00:00
2020-05-07 08:08:51 +00:00
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 dnode1 -c numOfMnodes -v 3
system sh/cfg.sh -n dnode2 -c numOfMnodes -v 3
system sh/cfg.sh -n dnode3 -c numOfMnodes -v 3
2020-07-04 13:41:57 +00:00
system sh/cfg.sh -n dnode1 -c maxVgroupsPerDb -v 2
system sh/cfg.sh -n dnode2 -c maxVgroupsPerDb -v 2
system sh/cfg.sh -n dnode3 -c maxVgroupsPerDb -v 2
system sh/cfg.sh -n dnode1 -c maxTablesPerVnode -v 1000
system sh/cfg.sh -n dnode2 -c maxTablesPerVnode -v 1000
system sh/cfg.sh -n dnode3 -c maxTablesPerVnode -v 1000
2020-04-19 15:28:22 +00:00
print ========= start dnodes
2020-06-01 05:29:35 +00:00
system sh/exec.sh -n dnode1 -s start
2020-04-19 15:28:22 +00:00
sql connect
2020-05-01 07:22:27 +00:00
sql create dnode $hostname2
sql create dnode $hostname3
2020-09-10 15:54:41 +00:00
system sh/exec.sh -n dnode2 -s start
2020-06-01 05:29:35 +00:00
system sh/exec.sh -n dnode3 -s start
2021-01-20 05:43:54 +00:00
sleep 2000
2020-04-19 15:28:22 +00:00
print ======== step1
2020-08-06 08:01:23 +00:00
sql create database db replica 3 blocks 3
2020-04-19 15:28:22 +00:00
sql create table db.mt (ts timestamp, tbcol int) TAGS(tgcol int)
$tbPrefix = db.t
$i = 0
2020-05-14 09:09:59 +00:00
while $i < 2000
2020-04-19 15:28:22 +00:00
$tb = $tbPrefix . $i
sql create table $tb using db.mt tags( $i )
$i = $i + 1
endw
2020-05-14 11:05:20 +00:00
sql show db.vgroups
if $rows != 2 then
return -1
endi
2020-04-19 15:28:22 +00:00
print ======== step2
sql drop database db
sql show databases
if $rows != 0 then
return -1
endi
2020-05-08 07:15:23 +00:00
2021-01-20 05:43:54 +00:00
sleep 2000
2020-05-14 09:09:59 +00:00
sql show dnodes
print dnode1 openVnodes $data2_1
print dnode2 openVnodes $data2_2
print dnode3 openVnodes $data2_3
if $data2_1 != 0 then
return -1
endi
if $data2_2 != 0 then
return -1
endi
if $data2_3 != 0 then
return -1
endi
print ======== step3
2020-06-01 05:29:35 +00:00
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
2020-05-14 09:09:59 +00:00
2020-06-01 05:29:35 +00:00
system sh/exec.sh -n dnode1 -s start
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
2020-05-14 09:09:59 +00:00
$x = 0
step3:
$x = $x + 1
sleep 2000
if $x == 10 then
return -1
endi
sql show mnodes
print dnode1 role $data2_1
if $data2_1 != master then
goto step3
endi
2020-06-01 05:29:35 +00:00
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