fix: reduce write rows from 30w to 3w
This commit is contained in:
parent
054ca189bb
commit
ea03444f89
|
@ -34,7 +34,7 @@ class TDTestCase(TBase):
|
||||||
sql = "select count(*) from meters"
|
sql = "select count(*) from meters"
|
||||||
tdSql.query(sql)
|
tdSql.query(sql)
|
||||||
allCnt = tdSql.getData(0, 0)
|
allCnt = tdSql.getData(0, 0)
|
||||||
if allCnt < 2000000:
|
if allCnt < 200000:
|
||||||
tdLog.exit(f"taosbenchmark insert row small. row count={allCnt} sql={sql}")
|
tdLog.exit(f"taosbenchmark insert row small. row count={allCnt} sql={sql}")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
"name": "meters",
|
"name": "meters",
|
||||||
"child_table_exists": "no",
|
"child_table_exists": "no",
|
||||||
"childtable_count": 10,
|
"childtable_count": 10,
|
||||||
"insert_rows": 300000,
|
"insert_rows": 30000,
|
||||||
"childtable_prefix": "d",
|
"childtable_prefix": "d",
|
||||||
"insert_mode": "taosc",
|
"insert_mode": "taosc",
|
||||||
"insert_interval": 0,
|
"insert_interval": 0,
|
||||||
|
|
Loading…
Reference in New Issue