replica2_basic.sim 4.0 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3 4

system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
S
scripts  
slguan 已提交
5 6
system sh/cfg.sh -n dnode1 -c wallevel -v 2
system sh/cfg.sh -n dnode2 -c wallevel -v 2
S
slguan 已提交
7 8
system sh/cfg.sh -n dnode1 -c numofMpeers -v 3
system sh/cfg.sh -n dnode2 -c numofMpeers -v 3
S
scripts  
slguan 已提交
9
system sh/exec_up.sh -n dnode1 -s start
S
slguan 已提交
10 11

sql connect
S
slguan 已提交
12
sql create dnode $hostname2
S
scripts  
slguan 已提交
13
system sh/exec_up.sh -n dnode2 -s start
S
slguan 已提交
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
sleep 3000

$N = 10
$db = d1
$table = table_r2

print =================== step 1 
sql create database $db replica 3
sql use $db
sql create table $table (ts timestamp, speed int) -x error_create
return -1
error_create:
sql drop database $db

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

sql create database $db replica 2 
sql use $db

sql create table $table (ts timestamp, speed int)
sleep 1000

print =================== step 3
$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

print =================== step 4
S
scripts  
slguan 已提交
53
system sh/exec_up.sh -n dnode2 -s stop
S
slguan 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
sleep 2000
$y = $x + $N
$expect = $N * 2
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

print =================== step 5
S
scripts  
slguan 已提交
70
system sh/exec_up.sh -n dnode2 -s start
S
slguan 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
sleep 2000
$y = $x + $N
$expect = $N * 3
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

print =================== step 6
S
scripts  
slguan 已提交
87
system sh/exec_up.sh -n dnode1 -s stop
S
slguan 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
sleep 2000
$y = $x + $N
$expect = $N * 4
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

print =================== step 7
S
scripts  
slguan 已提交
104
system sh/exec_up.sh -n dnode1 -s start
S
slguan 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
sleep 2000
$y = $x + $N
$expect = $N * 5
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

print =================== step 8
system sh/ip.sh -i 1 -s down
S
slguan 已提交
122

S
slguan 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
sleep 2000
$y = $x + $N
$expect = $N * 6
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

print =================== step 9
S
slguan 已提交
139

S
slguan 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
sleep 2000
$y = $x + $N
$expect = $N * 7
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

print =================== step 10
system sh/ip.sh -i 2 -s down
S
slguan 已提交
157

S
slguan 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
sleep 2000
$y = $x + $N
$expect = $N * 8
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

print =================== step 11
S
slguan 已提交
174

S
slguan 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
sleep 2000
$y = $x + $N
$expect = $N * 9
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

print =================== step 12
guanshengliang's avatar
scripts  
guanshengliang 已提交
191 192 193 194 195 196 197 198 199

system sh/exec_up.sh -n dnode1 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode2 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode3 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode4 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode5 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode6 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode7 -s stop  -x SIGINT
system sh/exec_up.sh -n dnode8 -s stop  -x SIGINT