Merge pull request #29712 from taosdata/fix/TD-33652-3.0

fix: reduce write rows from 30w to 3w
This commit is contained in:
Linhe Huo 2025-02-08 19:23:25 +08:00 committed by GitHub
commit 4eb0f1adcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class TDTestCase(TBase):
sql = "select count(*) from meters"
tdSql.query(sql)
allCnt = tdSql.getData(0, 0)
if allCnt < 2000000:
if allCnt < 200000:
tdLog.exit(f"taosbenchmark insert row small. row count={allCnt} sql={sql}")
return

View File

@ -30,7 +30,7 @@
"name": "meters",
"child_table_exists": "no",
"childtable_count": 10,
"insert_rows": 300000,
"insert_rows": 30000,
"childtable_prefix": "d",
"insert_mode": "taosc",
"insert_interval": 0,