fix: s3 for minio finished
This commit is contained in:
parent
26023864f1
commit
1600f0654d
|
@ -29,7 +29,7 @@
|
||||||
"childtable_prefix": "d",
|
"childtable_prefix": "d",
|
||||||
"insert_mode": "taosc",
|
"insert_mode": "taosc",
|
||||||
"timestamp_step": 1000,
|
"timestamp_step": 1000,
|
||||||
"start_timestamp":"now-15d",
|
"start_timestamp":"now-13d",
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "type": "bool", "name": "bc"},
|
{ "type": "bool", "name": "bc"},
|
||||||
{ "type": "float", "name": "fc" },
|
{ "type": "float", "name": "fc" },
|
||||||
|
|
|
@ -68,12 +68,12 @@ class TDTestCase(TBase):
|
||||||
self.compactDb()
|
self.compactDb()
|
||||||
|
|
||||||
# sleep 70s
|
# sleep 70s
|
||||||
tdLog.info(f"wait 70s ...")
|
tdLog.info(f"wait 65s ...")
|
||||||
time.sleep(70)
|
time.sleep(65)
|
||||||
self.trimDb(True)
|
self.trimDb(True)
|
||||||
|
|
||||||
rootPath = sc.clusterRootPath()
|
rootPath = sc.clusterRootPath()
|
||||||
cmd = f"ls {rootPath}/dnode1/data02/vnode/vnode*/tsdb/*.data"
|
cmd = f"ls {rootPath}/dnode1/data20/vnode/vnode*/tsdb/*.data"
|
||||||
tdLog.info(cmd)
|
tdLog.info(cmd)
|
||||||
loop = 0
|
loop = 0
|
||||||
while len(eos.runRetList(cmd)) > 0 and loop < 40:
|
while len(eos.runRetList(cmd)) > 0 and loop < 40:
|
||||||
|
|
|
@ -32,7 +32,7 @@ class srvCtl:
|
||||||
|
|
||||||
# get cluster root path like /root/TDinternal/sim/
|
# get cluster root path like /root/TDinternal/sim/
|
||||||
def clusterRootPath(self):
|
def clusterRootPath(self):
|
||||||
return tdDnodes.path
|
return tdDnodes.getDnodesRootDir()
|
||||||
|
|
||||||
# return dnode data files list
|
# return dnode data files list
|
||||||
def dnodeDataFiles(self, idx):
|
def dnodeDataFiles(self, idx):
|
||||||
|
|
|
@ -5,10 +5,17 @@
|
||||||
#unit-test
|
#unit-test
|
||||||
,,y,unit-test,bash test.sh
|
,,y,unit-test,bash test.sh
|
||||||
|
|
||||||
#army-test
|
#
|
||||||
|
# army-test
|
||||||
|
#
|
||||||
,,y,army,./pytest.sh python3 ./test.py -f enterprise/multi-level/mlevel_basic.py -N 3 -L 3 -D 2
|
,,y,army,./pytest.sh python3 ./test.py -f enterprise/multi-level/mlevel_basic.py -N 3 -L 3 -D 2
|
||||||
|
,,y,army,./pytest.sh python3 ./test.py -f enterprise/s3/s3_basic.py -L 3 -D 1
|
||||||
|
|
||||||
#system test
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# system test
|
||||||
|
#
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 8-stream/stream_basic.py
|
,,y,system-test,./pytest.sh python3 ./test.py -f 8-stream/stream_basic.py
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 8-stream/scalar_function.py
|
,,y,system-test,./pytest.sh python3 ./test.py -f 8-stream/scalar_function.py
|
||||||
,,y,system-test,./pytest.sh python3 ./test.py -f 8-stream/at_once_interval.py
|
,,y,system-test,./pytest.sh python3 ./test.py -f 8-stream/at_once_interval.py
|
||||||
|
|
Loading…
Reference in New Issue