basic5.sim 7.4 KB
Newer Older
1 2 3 4 5
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
system sh/deploy.sh -n dnode4 -i 4
S
Shengliang Guan 已提交
6 7 8 9
system sh/cfg.sh -n dnode1 -c transPullupInterval -v 1
system sh/cfg.sh -n dnode2 -c transPullupInterval -v 1
system sh/cfg.sh -n dnode3 -c transPullupInterval -v 1
system sh/cfg.sh -n dnode4 -c transPullupInterval -v 1
10 11 12 13 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
system sh/exec.sh -n dnode1 -s start
sql connect

print =============== step1: create dnodes
sql create dnode $hostname port 7200
sql create dnode $hostname port 7300
sql create dnode $hostname port 7400

$x = 0
step1: 
	$x = $x + 1
	sleep 1000
	if $x == 5 then
		return -1
	endi
sql show dnodes
if $data(1)[4] != ready then
  goto step1
endi

print =============== step2: create dnodes - with error
sql_error create mnode on dnode 1;
sql_error create mnode on dnode 2;
sql_error create mnode on dnode 3;
sql_error create mnode on dnode 4;
sql_error create mnode on dnode 5;
sql_error create mnode on dnode 6;

print =============== step3: create mnode 2 and 3
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
system sh/exec.sh -n dnode4 -s start
$x = 0
step3: 
	$x = $x + 1
	sleep 1000
	if $x == 5 then
		return -1
	endi
sql show dnodes
if $data(2)[4] != ready then
  goto step3
endi
if $data(3)[4] != ready then
  goto step3
endi
if $data(4)[4] != ready then
  goto step3
endi

sql create mnode on dnode 2
sql create mnode on dnode 3

$x = 0
step31: 
	$x = $x + 1
	sleep 1000
	if $x == 50 then
		return -1
	endi
sql show mnodes
if $data(1)[2] != leader then
  goto step31
endi
if $data(2)[2] != follower then
  goto step31
endi
if $data(3)[2] != follower then
  goto step31
endi

print =============== step4: create dnodes - with error
sql_error create mnode on dnode 1
sql_error create mnode on dnode 2;
sql_error create mnode on dnode 3;
sql_error create mnode on dnode 4;
sql_error create mnode on dnode 5;
sql_error create mnode on dnode 6;

print =============== step5: drop mnodes - with error
sql_error drop mnode on dnode 1
sql_error drop mnode on dnode 4
sql_error drop mnode on dnode 5
sql_error drop mnode on dnode 6

S
Shengliang Guan 已提交
95
system sh/exec.sh -n dnode2 -s stop -x SIGKILL
96 97 98 99 100 101 102 103
$x = 0
step5: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show dnodes
S
Shengliang Guan 已提交
104 105 106 107 108 109 110
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $data(1)[4] != ready then
  goto step5
endi
111 112 113
if $data(2)[4] != offline then
  goto step5
endi
S
Shengliang Guan 已提交
114 115 116 117 118 119
if $data(3)[4] != ready then
  goto step5
endi
if $data(4)[4] != ready then
  goto step5
endi
120 121 122

sql_error drop mnode on dnode 2

S
Shengliang Guan 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
system sh/exec.sh -n dnode2 -s start
$x = 0
step51: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show dnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $data(1)[4] != ready then
  goto step51
endi
if $data(2)[4] != ready then
  goto step51
endi
if $data(3)[4] != ready then
  goto step51
endi
if $data(4)[4] != ready then
  goto step51
endi

print =============== step6: stop mnode1 
system sh/exec.sh -n dnode1 -s stop -x SIGKILL
S
Shengliang Guan 已提交
151
# sql_error drop mnode on dnode 1
S
Shengliang Guan 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

$x = 0
step61: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show mnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
$leaderNum = 0
if $data(2)[2] == leader then
  $leaderNum = 1
endi
if $data(3)[2] == leader then
  $leaderNum = 1
endi
if  $leaderNum != 1 then
  goto step61
endi

print =============== step7: start mnode1 and wait it online
system sh/exec.sh -n dnode1 -s start

$x = 0
step71: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show dnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $data(1)[4] != ready then
  goto step71
endi
if $data(2)[4] != ready then
  goto step71
endi
if $data(3)[4] != ready then
  goto step71
endi
if $data(4)[4] != ready then
  goto step71
endi

print =============== step8: stop mnode1 and drop it
system sh/exec.sh -n dnode1 -s stop -x SIGKILL
sql_error drop mnode on dnode 1

$x = 0
step81: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show mnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
$leaderNum = 0
if $data(1)[2] == leader then
  $leaderNum = 1
endi
if $data(2)[2] == leader then
  $leaderNum = 1
endi
if $data(3)[2] == leader then
  $leaderNum = 1
endi
if  $leaderNum != 1 then
  goto step81
endi
if $data(1)[3] != dropping then
  goto step81
endi

print =============== step9: start mnode1 and wait it dropped
system sh/exec.sh -n dnode1 -s start

$x = 0
step91: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show dnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $data(1)[4] != ready then
  goto step91
endi
if $data(2)[4] != ready then
  goto step91
endi
if $data(3)[4] != ready then
  goto step91
endi
if $data(4)[4] != ready then
  goto step91
endi

$x = 0
step92: 
	$x = $x + 1
	sleep 1000
S
Shengliang Guan 已提交
267
	if $x == 20 then
S
Shengliang Guan 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
		return -1
	endi
sql show mnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
$leaderNum = 0
if $data(1)[2] == leader then
  $leaderNum = 1
endi
if $data(2)[2] == leader then
  $leaderNum = 1
endi
if $data(3)[2] == leader then
  $leaderNum = 1
endi
if  $leaderNum != 1 then
  goto step92
endi
if $rows != 2 then
  goto step92
endi

print =============== stepa: create mnode1 again
sql create mnode on dnode 1
$x = 0
stepa: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
sql show mnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
$leaderNum = 0
if $data(2)[2] == leader then
  $leaderNum = 1
endi
if $data(3)[2] == leader then
  $leaderNum = 1
endi
if $data(3)[2] == leader then
  $leaderNum = 1
endi
if  $leaderNum == 0 then
  goto stepa
endi
if  $leaderNum != 1 then
  return -1
endi

$x = 0
stepb:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
	  print ====> dnode not ready!
		return -1
	endi
sql show dnodes
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $rows != 4 then
  return -1
endi
if $data(1)[4] != ready then
  goto stepb
endi
if $data(2)[4] != ready then
  goto stepb
endi
if $data(3)[4] != ready then
  goto stepb
endi
if $data(4)[4] != ready then
  goto stepb
endi

350 351 352 353
system sh/exec.sh -n dnode1 -s stop
system sh/exec.sh -n dnode2 -s stop
system sh/exec.sh -n dnode3 -s stop
system sh/exec.sh -n dnode4 -s stop