delete.sim 1.0 KB
Newer Older
S
scripts  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/cfg.sh -n dnode1 -c wallevel -v 2
system sh/cfg.sh -n dnode1 -c numOfTotalVnodes -v 10

print ========= start dnodes
system sh/exec.sh -n dnode1 -s start
sleep 3000
sql connect

print ======== step1 
sql create database db blocks 2 maxtables 1000
sql create table db.mt (ts timestamp, tbcol int) TAGS(tgcol int)

$tbPrefix = db.t
$i = 0
while $i < 2000
  $tb = $tbPrefix . $i
  sql create table $tb using db.mt tags( $i )
  $i = $i + 1
endw 

print ======== step2
sleep 1000
sql drop database db
sql show databases
if $rows != 0 then 
  return -1
endi 

sleep 1000
sql show dnodes
print dnode1 openVnodes $data2_1
if $data2_1 != 0 then
	return -1
endi

print ======= step3
system sh/exec.sh -n dnode1 -s stop  -x SIGINT
sleep 1000
system sh/exec.sh -n dnode1 -s start 

$x = 0
step3: 
	$x = $x + 1
	sleep 2000
	if $x == 30 then
	  return -1
	endi

sql show mnodes
print dnode1 role $data2_1
if $data2_1 != master then
  goto step3
endi

sleep 1000

system sh/exec.sh -n dnode1 -s stop  -x SIGINT