limit.sim 1.7 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2
system sh/deploy.sh -n dnode1 -i 1
H
hjxilinx 已提交
3
system sh/cfg.sh -n dnode1 -c walLevel -v 0
S
scripts  
slguan 已提交
4
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v 129
S
scripts  
Shengliang Guan 已提交
5
system sh/cfg.sh -n dnode1 -c maxVgroupsPerDb -v 8
S
slguan 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19
system sh/exec.sh -n dnode1 -s start

sleep 3000
sql connect

print ============================ dnode1 start

$i = 0
$dbPrefix = ob_tl_db
$tbPrefix = ob_tl_tb
$db = $dbPrefix . $i
$tb = $tbPrefix . $i

print =================== step 0
S
scripts  
slguan 已提交
20
sql create database $db maxtables 129
S
slguan 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
sql use $db
sql show vgroups
if $rows != 0 then 
  return -1
endi

$N = 256

print =================== step 1
$x = $N
$y = 0
while $x > $y
  $table = a . $x
  sql create table $table (ts timestamp, speed int, i float, d double, b bigint, c binary(20))
  $x = $x - 1
endw 

sql show vgroups
S
scripts  
Shengliang Guan 已提交
39
if $rows != 8 then 
S
slguan 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53
  return -1
endi

print =================== step 2

$x = $N
$y = 0
while $x > $y
  $table = b . $x
  sql create table $table (ts timestamp, speed int, i float, d double, b bigint, c binary(20))
  $x = $x - 1
endw 

sql show vgroups
S
scripts  
Shengliang Guan 已提交
54
if $rows != 8 then 
S
slguan 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68
  return -1
endi

print =================== step 3

$x = $N
$y = 0
while $x > $y
  $table = c . $x
  sql create table $table (ts timestamp, speed int, i float, d double, b bigint, c binary(20))
  $x = $x - 1
endw 

sql show vgroups
S
scripts  
Shengliang Guan 已提交
69
if $rows != 8 then 
S
slguan 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
  return -1
endi

print =================== step 4

$x = $N
$y = 0
while $x > $y
  $table = d . $x
  sql create table $table (ts timestamp, speed int, i float, d double, b bigint, c binary(20))
  $x = $x - 1
endw 

sql show vgroups
if $rows != 8 then 
  return -1
endi

sql drop database $db
sql show databases
if $rows != 0 then 
  return -1
S
scripts  
slguan 已提交
92 93 94
endi

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