keep.sim 3.7 KB
Newer Older
1 2 3 4
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
S
Shengliang Guan 已提交
5 6 7 8 9
system sh/deploy.sh -n dnode4 -i 4
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
system sh/exec.sh -n dnode1 -s start
S
Shengliang Guan 已提交
11
system sh/exec.sh -n dnode2 -s start
12 13
sql connect

S
Shengliang Guan 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
print =============== step1 create dnode2
sql create dnode $hostname port 7200

$x = 0
step1:
	$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
if $rows != 2 then
  return -1
endi
if $data(1)[4] != ready then
  goto step1
endi
if $data(2)[4] != ready then
  goto step1
endi
37 38

print ======== step1 create db
39
sql create database keepdb replica 1 keep 30 duration 7
40 41 42 43 44 45
sql use keepdb
sql create table tb (ts timestamp, i int)

$x = 1
while $x < 41
  $time = $x . d
S
Shengliang Guan 已提交
46 47
  sql insert into tb values (now + $time , $x ) -x step2
  step2:
48 49 50 51 52 53 54
  $x = $x + 1
endw 

sql select * from tb
print ===> rows $rows
print ===> last $data01

S
Shengliang Guan 已提交
55
if $rows >= 40 then
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
	return -1
endi

print ======== step2 stop dnode
system sh/exec.sh -n dnode2 -s stop -x SIGINT
system sh/exec.sh -n dnode2 -s start

sql select * from tb
print ===> rows $rows
print ===> last $data01

if $rows >= 40 then
	return -1
endi
if $rows <= 20 then
	return -1
endi

$num1 = $rows + 40

print ======== step3 alter db
sql alter database keepdb keep 60
S
Shengliang Guan 已提交
78 79
flush database keepdb

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 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 151 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
sql show databases
print $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07
if $data02 != 1 then 
  return -1
endi
if $data03 != 1 then 
  return -1
endi
if $data04 != 1 then 
  return -1
endi
if $data05 != 7 then 
  return -1
endi
if $data06 != 60 then 
  return -1
endi

print ======== step4 insert data
$x = 41
while $x < 81
  $time = $x . d
  sql insert into tb values (now + $time , $x ) 
  $x = $x + 1
endw 

sql select * from tb
print ===> rows $rows
print ===> last $data01

if $rows != $num1  then
	return -1
endi
if $data01 != 80 then
	return -1
endi

print ======== step5 stop dnode
system sh/exec.sh -n dnode2 -s stop -x SIGINT
system sh/exec.sh -n dnode2 -s start

sql select * from tb
print ===> rows $rows
print ===> last $data01

if $rows >= $num1 then
	return -1
endi
if $rows <= 50 then
	return -1
endi
if $data01 != 80 then
	return -1
endi

print ======== step6 alter db
sql alter database keepdb keep 30
sleep 1000
sql show databases
print $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07
if $data02 != 1 then 
  return -1
endi
if $data03 != 1 then 
  return -1
endi
if $data04 != 1 then 
  return -1
endi
if $data05 != 7 then 
  return -1
endi
if $data06 != 30 then 
  return -1
endi

print ======== step7 stop dnode
system sh/exec.sh -n dnode2 -s stop -x SIGINT
sleep 2000
system sh/exec.sh -n dnode2 -s start
sleep 2000

sql select * from tb
print ===> rows $rows
print ===> last $data01

if $rows >= 40 then
	return -1
endi
if $rows <= 20 then
	return -1
endi
if $data01 != 80 then
	return -1
endi

$num3 = $rows + 40

print ======== step8 insert data
$x = 81
while $x < 121
  $time = $x . d
  sql insert into tb values (now + $time , $x ) 
  $x = $x + 1
endw 

sql select * from tb
print ===> rows $rows
print ===> last $data01

if $rows != $num3  then
	return -1
endi
if $data01 != 120 then
	return -1
endi

print ======== step9 alter db
sql alter database keepdb keep -1 -x error1
  return -1
error1:

sql alter database keepdb keep 0 -x error2
  return -1
error2:

206
sql alter database keepdb duration 1 -x error3
207 208 209 210 211
  return -1
error3:

print ======= test success