data.sim 2.5 KB
Newer Older
1 2
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
S
Shengliang Guan 已提交
3 4 5
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
system sh/cfg.sh -n dnode1 -c supportVnodes -v 0
7
system sh/exec.sh -n dnode1 -s start
S
Shengliang Guan 已提交
8 9 10
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
system sh/exec.sh -n dnode4 -s start
11 12
sql connect

S
Shengliang Guan 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25
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 == 10 then
	  print ====> dnode not ready!
		return -1
	endi
X
Xiaoyu Wang 已提交
26
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
print ===> rows: $rows 
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 $data24 $data35
if $rows != 4 then
  return -1
endi
if $data(1)[4] != ready then
  goto step1
endi
if $data(2)[4] != ready then
  goto step1
endi
if $data(3)[4] != ready then
  goto step1
endi
if $data(4)[4] != ready then
  goto step1
endi

S
Shengliang Guan 已提交
48 49
return

S
Shengliang Guan 已提交
50 51
print =============== step2: create database
sql create database db vgroups 1 replica 3
X
Xiaoyu Wang 已提交
52
sql select * from information_schema.ins_databases
S
Shengliang Guan 已提交
53 54 55 56 57 58 59
if $rows != 3 then 
  return -1
endi
if $data(db)[4] != 3 then 
  return -1
endi

X
Xiaoyu Wang 已提交
60
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
61 62 63 64 65 66 67 68 69
if $data(2)[2] != 1 then
  return -1
endi
if $data(3)[2] != 1 then
  return -1
endi
if $data(4)[2] != 1 then
  return -1
endi
70

S
Shengliang Guan 已提交
71
# vnodes
X
Xiaoyu Wang 已提交
72
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
73 74 75 76 77 78 79 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
if $data(2)[2] != 1 then
  return -1
endi
if $data(3)[2] != 1 then
  return -1
endi
if $data(4)[2] != 1 then
  return -1
endi

# v1_dnode
$hasleader = 0
$x = 0
step2:
	$x = $x + 1
	sleep 1000
	if $x == 20 then
	  print ====> dnode not ready!
		return -1
	endi
sql show db.vgroups
print ===> $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07 $data08
if $data(2)[3] != 2 then
  return -1
endi
if $data(2)[5] != 3 then
  return -1
endi
if $data(2)[7] != 4 then
  return -1
endi
if $data(2)[4] == leader then
  $hasleader = 1
endi
if $data(2)[6] == leader then
  $hasleader = 1
endi
if $data(2)[8] == leader then
  $hasleader = 1
endi
if $hasleader != 1 then
  goto step2
endi

sql use db;
sql create table stb (ts timestamp, c int) tags (t int);
sql create table t0 using stb tags (0);
sql insert into t0 values(now, 1);
sql show db.stables;
sql show db.tables;
sql show db.vgroups;

return
126 127 128 129 130
print ======== start back
run_back tmp/back.sim

sleep 2000
return -1