scripts and revise logs
This commit is contained in:
parent
cf4c526411
commit
dc2537d4d8
|
@ -267,7 +267,7 @@ void vnodeRelease(void *pVnodeRaw) {
|
|||
assert(refCount >= 0);
|
||||
|
||||
if (refCount > 0) {
|
||||
vTrace("vgId:%d, release vnode, refCount:%d", pVnode, vgId, refCount);
|
||||
vTrace("vgId:%d, release vnode, refCount:%d", vgId, refCount);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -693,8 +693,9 @@ static bool vnodeReadVersion(SVnodeObj *pVnode) {
|
|||
sprintf(versionFile, "%s/vnode%d/version.json", tsVnodeDir, pVnode->vgId);
|
||||
FILE *fp = fopen(versionFile, "r");
|
||||
if (!fp) {
|
||||
vTrace("vgId:%d, failed to open version file:%s error:%s", pVnode->vgId,
|
||||
versionFile, strerror(errno));
|
||||
if (errno != ENOENT) {
|
||||
vError("vgId:%d, failed to open version file:%s error:%s", pVnode->vgId, versionFile, strerror(errno));
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -239,7 +239,7 @@ static int32_t vnodeProcessDropStableMsg(SVnodeObj *pVnode, void *pCont, SRspRet
|
|||
|
||||
code = tsdbDropTable(pVnode->tsdb, stableId);
|
||||
|
||||
vTrace("vgId:%d, stable:%s, drop stable result:%s", pVnode, pTable->tableId, tstrerror(code));
|
||||
vTrace("vgId:%d, stable:%s, drop stable result:%s", pVnode->vgId, pTable->tableId, tstrerror(code));
|
||||
|
||||
return code;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
system sh/stop_dnodes.sh
|
||||
|
||||
system sh/deploy.sh -n dnode1 -i 1
|
||||
|
||||
system sh/cfg.sh -n dnode1 -c numOfTotalVnodes -v 10
|
||||
system sh/cfg.sh -n dnode2 -c numOfTotalVnodes -v 10
|
||||
system sh/cfg.sh -n dnode3 -c numOfTotalVnodes -v 10
|
||||
|
@ -36,7 +34,7 @@ while $i < 10
|
|||
sql create table $tb1 using st tags(1)
|
||||
sql insert into $tb1 values(now, 1);
|
||||
|
||||
$tb1 = $tb . 5
|
||||
$tb1 = $tb . 4
|
||||
sql create table $tb1 using st tags(1)
|
||||
sql insert into $tb1 values(now, 1);
|
||||
|
||||
|
@ -58,7 +56,7 @@ while $i < 10
|
|||
|
||||
sql drop table st
|
||||
|
||||
sleep 1000
|
||||
sleep 2000
|
||||
print times $i
|
||||
$i = $i + 1
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ system sh/cfg.sh -n dnode2 -c numOfMPeers -v 2
|
|||
system sh/cfg.sh -n dnode3 -c numOfMPeers -v 2
|
||||
|
||||
print ============== step1
|
||||
system sh/exec_up.sh -n dnode1 -s start
|
||||
system sh/exec_up.sh -n dnode1 -s start -t
|
||||
sleep 3000
|
||||
sql connect
|
||||
|
||||
|
@ -20,7 +20,7 @@ if $data2_1 != master then
|
|||
endi
|
||||
|
||||
print ============== step2
|
||||
system sh/exec_up.sh -n dnode2 -s start
|
||||
system sh/exec_up.sh -n dnode2 -s start -t
|
||||
sql create dnode $hostname2
|
||||
|
||||
$x = 0
|
||||
|
@ -41,6 +41,12 @@ if $data2_2 != slave then
|
|||
goto show2
|
||||
endi
|
||||
|
||||
system sh/exec_up.sh -n dnode1 -s stop -x SIGINT
|
||||
system sh/exec_up.sh -n dnode2 -s stop -x SIGINT
|
||||
system sh/exec_up.sh -n dnode3 -s stop -x SIGINT
|
||||
system sh/exec_up.sh -n dnode4 -s stop -x SIGINT
|
||||
return
|
||||
|
||||
print ============== step3
|
||||
sql_error drop dnode $hostname1 -x error1
|
||||
print should not drop master
|
||||
|
|
Loading…
Reference in New Issue