restartSpeed.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
system sh/stop_dnodes.sh

$totalVnodes = 20
$minVnodes = 10
$maxVnodes = 10
$maxTables = 4
$totalRows = $totalVnodes * $maxTables

system sh/deploy.sh -n dnode1 -i 1
system sh/cfg.sh -n dnode1 -c walLevel            -v 2
system sh/deploy.sh -n dnode2 -i 2
system sh/cfg.sh -n dnode2 -c walLevel            -v 2


print ==========  prepare data
S
Shengliang Guan 已提交
16
system sh/exec.sh -n dnode1 -s start
S
scripts  
Shengliang Guan 已提交
17 18
sleep 3000
sql connect 
R
scripts  
root 已提交
19
sql create database db blocks 3 cache 1 
S
scripts  
Shengliang Guan 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
sql use db

print ==========  step1
sql create table mt (ts timestamp, tbcol int) TAGS(tgcol int)

$x = 0
while $x < $totalRows
  $tb = t . $x
  sql create table $tb using mt tags( $x )
  sql insert into $tb values (now, $x ) 
  $x = $x + 1
endw 


S
Shengliang Guan 已提交
34 35 36 37 38 39 40 41
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