delete.sim 1.2 KB
Newer Older
S
scripts  
Shengliang Guan 已提交
1 2 3 4
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
S
scripts  
Shengliang Guan 已提交
5 6
system sh/cfg.sh -n dnode1 -c maxVgroupsPerDb -v 10
system sh/cfg.sh -n dnode1 -c maxTablesPerVnode -v 1000
S
scripts  
Shengliang Guan 已提交
7 8 9 10 11 12 13

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

print ======== step1 
S
scripts  
Shengliang Guan 已提交
14
sql create database db blocks 2
S
scripts  
Shengliang Guan 已提交
15 16 17 18 19 20 21 22 23 24
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 

S
scripts  
Shengliang Guan 已提交
25
sql show db.vgroups
S
scripts  
Shengliang Guan 已提交
26
if $rows != 10 then 
S
scripts  
Shengliang Guan 已提交
27 28 29 30
  return -1
endi 

return
S
scripts  
Shengliang Guan 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
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
S
scripts  
Shengliang Guan 已提交
48
sleep 5000
S
scripts  
Shengliang Guan 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
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