mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules
* Revert "[TD-13408]<test>: move tests directory out"
This reverts commit 7db7bd9337.
* revert to make tests back
* immigrate file change in stand-alone repo to TDengine
* remove tests repository checkout
Co-authored-by: tangfangzhi <fztang@taosdata.com>
41 lines
No EOL
1 KiB
Text
41 lines
No EOL
1 KiB
Text
system sh/stop_dnodes.sh
|
|
|
|
$totalVnodes = 20
|
|
$minVnodes = 10
|
|
$maxVnodes = 10
|
|
$maxTables = 4
|
|
$totalRows = $totalVnodes * $maxTables
|
|
|
|
system sh/deploy.sh -n dnode1 -i 1
|
|
system sh/cfg.sh -n dnode1 -c walLevel -v 2
|
|
system sh/deploy.sh -n dnode2 -i 2
|
|
system sh/cfg.sh -n dnode2 -c walLevel -v 2
|
|
|
|
|
|
print ========== prepare data
|
|
system sh/exec.sh -n dnode1 -s start
|
|
sleep 2000
|
|
sql connect
|
|
sql create database db blocks 3 cache 1
|
|
sql use db
|
|
|
|
print ========== step1
|
|
sql create table mt (ts timestamp, tbcol int) TAGS(tgcol int)
|
|
|
|
$x = 0
|
|
while $x < $totalRows
|
|
$tb = t . $x
|
|
sql create table $tb using mt tags( $x )
|
|
sql insert into $tb values (now, $x )
|
|
$x = $x + 1
|
|
endw
|
|
|
|
|
|
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 |