TDengine/tests/script/tmp/data.sim

68 lines
1.6 KiB
Text
Raw Normal View History

system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
2022-07-19 05:07:24 +00:00
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
system sh/deploy.sh -n dnode4 -i 4
2022-07-26 03:25:54 +00:00
system sh/cfg.sh -n dnode1 -c supportVnodes -v 0
system sh/exec.sh -n dnode1 -s start
2022-07-19 05:07:24 +00:00
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
system sh/exec.sh -n dnode4 -s start
sql connect
2022-07-19 05:07:24 +00:00
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
2022-08-11 12:56:31 +00:00
sql select * from information_schema.ins_dnodes
2022-07-19 05:07:24 +00:00
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
2022-11-02 04:00:58 +00:00
return
2022-07-19 05:07:24 +00:00
print =============== step2: create database
2022-11-02 04:00:58 +00:00
sql create database db vgroups 33 replica 3
2022-07-19 05:07:24 +00:00
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);
2022-08-11 15:13:45 +00:00
sql select * from information_schema.ins_stables where db_name = 'db';
sql select * from information_schema.ins_tables where db_name = 'db';
2022-07-19 05:07:24 +00:00
sql show db.vgroups;
2022-11-02 04:00:58 +00:00
system sh/exec.sh -n dnode2 -s stop
2022-07-19 05:07:24 +00:00
return
print ======== start back
run_back tmp/back.sim
sleep 2000
return -1