Merge pull request #26516 from taosdata/fix/s3case

fix: change s3 timestamp_step 100ms and 50ms
This commit is contained in:
Alex Duan 2024-07-15 17:00:58 +08:00 committed by GitHub
commit 92cb9f5317
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@
"insert_rows": 2000000,
"childtable_prefix": "d",
"insert_mode": "taosc",
"timestamp_step": 1000,
"timestamp_step": 100,
"start_timestamp": 1600000000000,
"columns": [
{ "type": "bool", "name": "bc"},

View File

@ -73,7 +73,7 @@ class TDTestCase(TBase):
# come from s3_basic.json
self.childtable_count = 6
self.insert_rows = 2000000
self.timestamp_step = 1000
self.timestamp_step = 100
def createStream(self, sname):
sql = f"create stream {sname} fill_history 1 into stm1 as select count(*) from {self.db}.{self.stb} interval(10s);"
@ -262,7 +262,7 @@ class TDTestCase(TBase):
# come from s3_basic.json
self.insert_rows += self.insert_rows/4
self.timestamp_step = 500
self.timestamp_step = 50
# delete
def checkDelete(self):

View File

@ -36,7 +36,7 @@
"insert_rows": 1000000,
"childtable_prefix": "d",
"insert_mode": "taosc",
"timestamp_step": 500,
"timestamp_step": 50,
"start_timestamp": 1600000000000,
"columns": [
{ "type": "bool", "name": "bc"},