fix/TD-33284-compact-coverage-add-kill-compact

This commit is contained in:
dmchen 2024-12-19 09:11:55 +00:00
parent ab58fdd6da
commit 8b90e0cd8f
1 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,84 @@
from util.log import *
from util.cases import *
from util.dnodes import *
from util.sql import *
import socket
import taos
class TDTestCase:
def init(self, conn, logSql, replicaVar=1):
tdLog.debug(f"start to excute {__file__}")
self.replicaVar = int(replicaVar)
def run(self):
tdSql.query("CREATE DATABASE power KEEP 365 DURATION 10 BUFFER 16 WAL_LEVEL 1 vgroups 1 replica 1;")
tdSql.query("CREATE DATABASE power1 KEEP 365 DURATION 10 BUFFER 16 WAL_LEVEL 1 vgroups 1 replica 1;")
#first
tdSql.query("compact database power;")
tdLog.info("compact id:%d"%tdSql.queryResult[0][1])
tdSql.query("show compact %d;"%tdSql.queryResult[0][1])
tdLog.info("detail:%d"%tdSql.queryRows)
#second
tdSql.query("compact database power1;")
tdLog.info("compact id:%d"%tdSql.queryResult[0][1])
tdSql.query("show compact %d;"%tdSql.queryResult[0][1])
tdLog.info("detail:%d"%tdSql.queryRows)
#kill
tdSql.query("show compacts;")
number1 = tdSql.queryResult[0][0]
number2 = tdSql.queryResult[1][0]
#first
tdLog.info("kill compact %d;"%number1)
tdSql.query("kill compact %d;"%number1)
#second
tdLog.info("kill compact %d;"%number2)
tdSql.query("kill compact %d;"%number2)
#show
count = 0
tdLog.info("query progress")
while count < 50:
tdSql.query("show compact %d;"%number1)
row1 = tdSql.queryRows
tdSql.query("show compact %d;"%number2)
row2 = tdSql.queryRows
tdLog.info("compact%d:detail count:%d"%(number1, row1))
tdLog.info("compact%d:detail count:%d"%(number2, row2))
if row1 == 0 and row2 == 0 :
break
time.sleep(1)
count +=1
tdLog.info("loop%d"%count)
#self.Fun.executeSQL("kill compact %d"%tdSql.queryResult[0][1])
def stop(self):
tdSql.close()
tdLog.success(f"{__file__} successfully executed")
tdCases.addLinux(__file__, TDTestCase())
tdCases.addWindows(__file__, TDTestCase())