TDengine/tests/system-test/6-cluster/5dnode3mnodeStopLoop.py

115 lines
3.9 KiB
Python
Raw Normal View History

2022-06-29 12:46:42 +00:00
from ssl import ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE
import taos
import sys
import time
2022-07-30 03:33:39 +00:00
import os
2022-06-29 12:46:42 +00:00
from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import *
from util.dnodes import TDDnodes
from util.dnodes import TDDnode
from util.cluster import *
from test import tdDnodes
sys.path.append("./6-cluster")
from clusterCommonCreate import *
2022-07-30 03:33:39 +00:00
from clusterCommonCheck import *
2022-06-29 12:46:42 +00:00
import time
import socket
import subprocess
from multiprocessing import Process
2022-07-30 03:33:39 +00:00
2022-06-29 12:46:42 +00:00
class TDTestCase:
def init(self, conn, logSql, replicaVar=1):
2022-06-29 12:46:42 +00:00
tdLog.debug(f"start to excute {__file__}")
tdSql.init(conn.cursor())
self.host = socket.gethostname()
def getBuildPath(self):
selfPath = os.path.dirname(os.path.realpath(__file__))
if ("community" in selfPath):
projPath = selfPath[:selfPath.find("community")]
else:
projPath = selfPath[:selfPath.find("tests")]
for root, dirs, files in os.walk(projPath):
2023-08-07 10:32:58 +00:00
if ("taosd" in files or "taosd.exe" in files):
2022-06-29 12:46:42 +00:00
rootRealPath = os.path.dirname(os.path.realpath(root))
if ("packaging" not in rootRealPath):
buildPath = root[:len(root) - len("/build/bin")]
break
return buildPath
def fiveDnodeThreeMnode(self,dnodenumbers,mnodeNums,restartNumber):
tdLog.printNoPrefix("======== test case 1: ")
paraDict = {'dbName': 'db',
'dropFlag': 1,
'event': '',
'vgroups': 4,
'replica': 1,
'stbName': 'stb',
'colPrefix': 'c',
'tagPrefix': 't',
'colSchema': [{'type': 'INT', 'count':1}, {'type': 'binary', 'len':20, 'count':1}],
'tagSchema': [{'type': 'INT', 'count':1}, {'type': 'binary', 'len':20, 'count':1}],
'ctbPrefix': 'ctb',
'ctbNum': 1,
'rowsPerTbl': 10000,
'batchNum': 10,
'startTs': 1640966400000, # 2022-01-01 00:00:00.000
'pollDelay': 10,
'showMsg': 1,
'showRow': 1}
dnodenumbers=int(dnodenumbers)
mnodeNums=int(mnodeNums)
dbNumbers = int(dnodenumbers * restartNumber)
2022-07-30 03:33:39 +00:00
2022-06-29 12:46:42 +00:00
tdLog.info("first check dnode and mnode")
2022-08-11 13:55:20 +00:00
tdSql.query("select * from information_schema.ins_dnodes;")
2022-06-29 12:46:42 +00:00
tdSql.checkData(0,1,'%s:6030'%self.host)
tdSql.checkData(4,1,'%s:6430'%self.host)
clusterComCheck.checkDnodes(dnodenumbers)
#check mnode status
tdLog.info("check mnode status")
clusterComCheck.checkMnodeStatus(mnodeNums)
2022-06-29 12:46:42 +00:00
2022-07-30 03:33:39 +00:00
# add some error operations and
2022-06-29 12:46:42 +00:00
tdLog.info("Confirm the status of the dnode again")
tdSql.error("create mnode on dnode 2")
2022-08-11 13:55:20 +00:00
tdSql.query("select * from information_schema.ins_dnodes;")
2022-06-29 12:46:42 +00:00
# print(tdSql.queryResult)
clusterComCheck.checkDnodes(dnodenumbers)
# restart all taosd
tdDnodes=cluster.dnodes
2022-07-30 03:33:39 +00:00
tdLog.info("Take turns stopping all dnodes ")
2022-06-29 12:46:42 +00:00
# seperate vnode and mnode in different dnodes.
# create database and stable
2022-07-30 03:33:39 +00:00
stopcount =0
2024-07-16 09:25:37 +00:00
while stopcount <= 1:
2022-06-29 12:46:42 +00:00
tdLog.info(" restart loop: %d"%stopcount )
for i in range(dnodenumbers):
tdDnodes[i].stoptaosd()
tdDnodes[i].starttaosd()
stopcount+=1
clusterComCheck.checkDnodes(dnodenumbers)
clusterComCheck.checkMnodeStatus(3)
2022-07-30 03:33:39 +00:00
def run(self):
2022-06-29 12:46:42 +00:00
# print(self.master_dnode.cfgDict)
self.fiveDnodeThreeMnode(5,3,1)
2022-07-30 03:33:39 +00:00
2022-06-29 12:46:42 +00:00
def stop(self):
tdSql.close()
tdLog.success(f"{__file__} successfully executed")
tdCases.addLinux(__file__, TDTestCase())
tdCases.addWindows(__file__, TDTestCase())