fix: adjust 2 tables to write

This commit is contained in:
Alex Duan 2024-02-27 12:43:45 +08:00
parent 6a91673880
commit d964caf31e
2 changed files with 6 additions and 6 deletions

View File

@ -18,16 +18,16 @@
"drop": "yes",
"vgroups": 2,
"replica": 1,
"duration":"10d",
"duration":"15d",
"flush_each_batch":"yes",
"keep": "30d,60d,100d"
"keep": "60d,100d,200d"
},
"super_tables": [
{
"name": "stb",
"child_table_exists": "no",
"childtable_count": 6,
"insert_rows": 1000000,
"childtable_count": 2,
"insert_rows": 2000000,
"childtable_prefix": "d",
"insert_mode": "taosc",
"timestamp_step": 1000,

View File

@ -58,8 +58,8 @@ class TDTestCase(TBase):
tdSql.execute(f"use {self.db}")
# come from s3_basic.json
self.childtable_count = 6
self.insert_rows = 1000000
self.childtable_count = 2
self.insert_rows = 2000000
self.timestamp_step = 1000
def createStream(self, sname):