basic5.sim 7.9 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
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
X
Xiaoyu Wang 已提交
25
sql select * from information_schema.ins_dnodes
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
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
X
Xiaoyu Wang 已提交
49
sql select * from information_schema.ins_dnodes
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
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
X
Xiaoyu Wang 已提交
70
sql select * from information_schema.ins_mnodes
71 72 73
$leaderNum = 0
if $data(1)[2] == leader then
  $leaderNum = 1
74
endi
75 76
if $data(2)[2] == leader then
  $leaderNum = 1
77
endi
78 79 80 81
if $data(3)[2] == leader then
  $leaderNum = 1
endi
if  $leaderNum == 0 then
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
  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 已提交
99
system sh/exec.sh -n dnode2 -s stop -x SIGKILL
100 101 102 103 104 105 106
$x = 0
step5: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
X
Xiaoyu Wang 已提交
107
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
108 109 110 111 112 113 114
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
115 116 117
if $data(2)[4] != offline then
  goto step5
endi
S
Shengliang Guan 已提交
118 119 120 121 122 123
if $data(3)[4] != ready then
  goto step5
endi
if $data(4)[4] != ready then
  goto step5
endi
124 125 126

sql_error drop mnode on dnode 2

S
Shengliang Guan 已提交
127 128 129 130 131 132 133 134
system sh/exec.sh -n dnode2 -s start
$x = 0
step51: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
X
Xiaoyu Wang 已提交
135
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
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 已提交
155
# sql_error drop mnode on dnode 1
S
Shengliang Guan 已提交
156 157 158 159 160 161 162 163

$x = 0
step61: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
X
Xiaoyu Wang 已提交
164
sql select * from information_schema.ins_mnodes -x step61
S
Shengliang Guan 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
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
X
Xiaoyu Wang 已提交
189
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
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
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
X
Xiaoyu Wang 已提交
218
sql select * from information_schema.ins_mnodes
S
Shengliang Guan 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
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

print =============== step9: start mnode1 and wait it dropped
system sh/exec.sh -n dnode1 -s start
238 239
sql drop mnode on dnode 1 -x step90
step90:
S
Shengliang Guan 已提交
240 241 242 243 244 245 246 247

$x = 0
step91: 
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi
X
Xiaoyu Wang 已提交
248
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
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 已提交
270
	if $x == 20 then
S
Shengliang Guan 已提交
271 272
		return -1
	endi
X
Xiaoyu Wang 已提交
273
sql select * from information_schema.ins_mnodes
S
Shengliang Guan 已提交
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
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
X
Xiaoyu Wang 已提交
303
sql select * from information_schema.ins_mnodes
S
Shengliang Guan 已提交
304 305 306 307
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
$leaderNum = 0
308
if $data(1)[2] == leader then
S
Shengliang Guan 已提交
309 310
  $leaderNum = 1
endi
311
if $data(2)[2] == leader then
S
Shengliang Guan 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
  $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
X
Xiaoyu Wang 已提交
332
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
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

353 354 355 356
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