replica3_vgroup.sim 1.3 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3 4 5

system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
S
scripts  
slguan 已提交
6 7 8
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
S
slguan 已提交
9 10 11 12
system sh/cfg.sh -n dnode1 -c numofMpeers -v 3
system sh/cfg.sh -n dnode2 -c numofMpeers -v 3
system sh/cfg.sh -n dnode3 -c numofMpeers -v 3

S
scripts  
slguan 已提交
13
system sh/exec_up.sh -n dnode1 -s start
S
slguan 已提交
14
sql connect
S
slguan 已提交
15 16
sql create dnode $hostname2
sql create dnode $hostname3
S
scripts  
slguan 已提交
17 18
system sh/exec_up.sh -n dnode2 -s start
system sh/exec_up.sh -n dnode3 -s start
S
slguan 已提交
19 20 21 22 23 24 25 26 27 28
sleep 3000

$N = 10
$table = table_r3
$db = db1

sleep 3000

print =================== step 1 

S
scripts  
slguan 已提交
29
sql create database $db replica 3 maxtables 100
S
slguan 已提交
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 60 61 62 63 64 65
sql use $db
sql create table st (ts timestamp, speed int) tags (t1 int)
sleep 3001


$tbPre = m
$N = 280
$x = 0
$y = $x + $N
while $x < $y
  $table = $tbPre . $x 
  sql create table $table using st tags ( $x )
  $ms = $x . m
  sql insert into $table values (now + $ms , $x )  
  $x = $x + 1
endw 


#print =================== step 2
#$x = 1
#$y = $x + $N
#$expect = $N
#while $x < $y
#  $ms = $x . m 
#  sql insert into $table values (now + $ms , $x ) 
#  $x = $x + 1
#endw 

#sql select * from $table
#print sql select * from $table -> $rows points 
#if $rows != $expect then 
#  return -1
#endi