replica_add13.sim 5.4 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3 4 5 6

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
slguan 已提交
7

S
scripts  
slguan 已提交
8 9 10 11
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
system sh/cfg.sh -n dnode4 -c wallevel -v 2
S
slguan 已提交
12

13 14 15 16
system sh/cfg.sh -n dnode1 -c numOfMnodes -v 1
system sh/cfg.sh -n dnode2 -c numOfMnodes -v 1
system sh/cfg.sh -n dnode3 -c numOfMnodes -v 1
system sh/cfg.sh -n dnode4 -c numOfMnodes -v 1
S
slguan 已提交
17

S
Shengliang Guan 已提交
18 19 20 21
system sh/cfg.sh -n dnode1 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode2 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode3 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode4 -c mnodeEqualVnodeNum -v 4
S
slguan 已提交
22 23

print ========= start dnodes
S
Shengliang Guan 已提交
24
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
25
sql connect
S
slguan 已提交
26
sql create dnode $hostname2
S
Shengliang Guan 已提交
27
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
28
sql create dnode $hostname3
S
Shengliang Guan 已提交
29
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
30
sql create dnode $hostname4
S
Shengliang Guan 已提交
31
system sh/exec.sh -n dnode4 -s start
S
slguan 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44
sleep 3000

print ======== step1 
sql create database d1 replica 1
sql create database d2 replica 1
sql create database d3 replica 1
sql create database d4 replica 1

sql create table d1.t1 (ts timestamp, i int)
sql create table d2.t2 (ts timestamp, i int)
sql create table d3.t3 (ts timestamp, i int)
sql create table d4.t4 (ts timestamp, i int)

S
scripts  
Shengliang Guan 已提交
45 46 47 48
sql insert into d1.t1 values(1589529000011, 1)
sql insert into d2.t2 values(1589529000021, 1)
sql insert into d3.t3 values(1589529000031, 1)
sql insert into d4.t4 values(1589529000041, 1)
S
slguan 已提交
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

sql select * from d1.t1
if $rows != 1 then
	return -1
endi

sql select * from d2.t2
if $rows != 1 then
	return -1
endi

sql select * from d3.t3
if $rows != 1 then
	return -1
endi

sql select * from d4.t4
if $rows != 1 then
	return -1
endi

print ======== step2
sql alter database d1 replica 3
sql alter database d2 replica 3
sql alter database d3 replica 3
sql alter database d4 replica 3
S
slguan 已提交
75
sleep 10000
S
slguan 已提交
76 77 78 79 80 81 82 83 84 85 86

print ======== step3
$x = 0
show3: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then 
		return -1
	endi
	
sql show dnodes
S
slguan 已提交
87 88 89 90
print dnode1 ==> openVnodes: $data2_1
print dnode2 ==> openVnodes: $data2_2
print dnode3 ==> openVnodes: $data2_3
print dnode4 ==> openVnodes: $data2_4
S
slguan 已提交
91

S
slguan 已提交
92
if $data2_1 != 0 then
S
slguan 已提交
93
   return -1
S
slguan 已提交
94 95
endi

S
slguan 已提交
96
if $data2_2 != 4 then
S
slguan 已提交
97
   return -1
S
slguan 已提交
98 99
endi

S
slguan 已提交
100
if $data2_3 != 4 then
S
slguan 已提交
101
   return -1
S
slguan 已提交
102 103
endi

S
slguan 已提交
104
if $data2_3 != 4 then
S
slguan 已提交
105
   return -1
S
slguan 已提交
106 107 108
endi

print ======== step4
S
scripts  
Shengliang Guan 已提交
109 110 111 112
sql insert into d1.t1 values(1589529000012, 2)
sql insert into d2.t2 values(1589529000022, 2)
sql insert into d3.t3 values(1589529000032, 2)
sql insert into d4.t4 values(1589529000042, 2)
S
slguan 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134

sql select * from d1.t1
if $rows != 2 then
	return -1
endi

sql select * from d2.t2
if $rows != 2 then
	return -1
endi

sql select * from d3.t3
if $rows != 2 then
	return -1
endi

sql select * from d4.t4
if $rows != 2 then
	return -1
endi

print ========= step5 
S
slguan 已提交
135 136
sql reset query cache
sleep 1000
S
Shengliang Guan 已提交
137
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
slguan 已提交
138
sleep 5000
S
slguan 已提交
139

S
scripts  
Shengliang Guan 已提交
140 141 142 143
sql insert into d1.t1 values(1589529000013, 3)
sql insert into d2.t2 values(1589529000023, 3)
sql insert into d3.t3 values(1589529000033, 3)
sql insert into d4.t4 values(1589529000043, 3)
S
slguan 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

sql select * from d1.t1
if $rows != 3 then
	return -1
endi

sql select * from d2.t2
if $rows != 3 then
	return -1
endi

sql select * from d3.t3
if $rows != 3 then
	return -1
endi

sql select * from d4.t4
if $rows != 3 then
	return -1
endi

print ========= step6
S
Shengliang Guan 已提交
166
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
167
sleep 5000
S
Shengliang Guan 已提交
168
system sh/exec.sh -n dnode3 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
169
sleep 5000
S
slguan 已提交
170

S
scripts  
Shengliang Guan 已提交
171 172 173 174
sql insert into d1.t1 values(1589529000014, 4)
sql insert into d2.t2 values(1589529000024, 4)
sql insert into d3.t3 values(1589529000034, 4)
sql insert into d4.t4 values(1589529000044, 4)
S
slguan 已提交
175 176

sql select * from d1.t1
S
scripts  
Shengliang Guan 已提交
177
print select * from d1.t1 $rows
S
slguan 已提交
178 179 180 181 182
if $rows != 4 then
	return -1
endi

sql select * from d2.t2
S
scripts  
Shengliang Guan 已提交
183
print select * from d2.t2 $rows
S
slguan 已提交
184 185 186 187 188
if $rows != 4 then
	return -1
endi

sql select * from d3.t3
S
scripts  
Shengliang Guan 已提交
189
print select * from d3.t3 $rows
S
slguan 已提交
190 191 192 193 194
if $rows != 4 then
	return -1
endi

sql select * from d4.t4
S
scripts  
Shengliang Guan 已提交
195
print select * from d4.t4 $rows
S
slguan 已提交
196 197 198 199 200
if $rows != 4 then
	return -1
endi

print ========= step7
S
Shengliang Guan 已提交
201
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
202
sleep 5000
S
Shengliang Guan 已提交
203
system sh/exec.sh -n dnode4 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
204
sleep 5000
S
slguan 已提交
205

S
scripts  
Shengliang Guan 已提交
206 207 208 209
sql insert into d1.t1 values(1589529000015, 5)
sql insert into d2.t2 values(1589529000025, 5)
sql insert into d3.t3 values(1589529000035, 5)
sql insert into d4.t4 values(1589529000045, 5)
S
slguan 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231

sql select * from d1.t1
if $rows != 5 then
	return -1
endi

sql select * from d2.t2
if $rows != 5 then
	return -1
endi

sql select * from d3.t3
if $rows != 5 then
	return -1
endi

sql select * from d4.t4
if $rows != 5 then
	return -1
endi

print ========= step8
S
Shengliang Guan 已提交
232
system sh/exec.sh -n dnode4 -s start
S
slguan 已提交
233
sleep 5000
S
Shengliang Guan 已提交
234
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
235
sleep 5000
S
slguan 已提交
236

S
scripts  
Shengliang Guan 已提交
237 238 239 240
sql insert into d1.t1 values(1589529000016, 6)
sql insert into d2.t2 values(1589529000026, 6)
sql insert into d3.t3 values(1589529000036, 6)
sql insert into d4.t4 values(1589529000046, 6)
S
slguan 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259

sql select * from d1.t1
if $rows != 6 then
	return -1
endi

sql select * from d2.t2
if $rows != 6 then
	return -1
endi

sql select * from d3.t3
if $rows != 6 then
	return -1
endi

sql select * from d4.t4
if $rows != 6 then
	return -1
S
scripts  
slguan 已提交
260 261
endi

S
Shengliang Guan 已提交
262 263 264 265 266 267 268 269
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