Skip to content

Commit ff30985

Browse files
refactor(tx_pool_check): reduce transaction counts and measurement intervals for throughput and latency checks
1 parent 3cf2215 commit ff30985

File tree

2 files changed

+6
-35
lines changed

2 files changed

+6
-35
lines changed

playbooks/dev/tx-pool-check-short.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ tasks:
99
title: "Check transaction pool throughput with 10.000 transactions"
1010
timeout: 30m
1111
config:
12-
qps: 20000
13-
measureInterval: 2000
12+
qps: 10000
13+
measureInterval: 1000
1414
configVars:
1515
privateKey: "walletPrivkey"
1616
- name: tx_pool_clean
@@ -22,9 +22,9 @@ tasks:
2222
title: "Check transaction pool latency with 10.000 transactions"
2323
timeout: 30m
2424
config:
25-
txCount: 20000
26-
measureInterval: 2000
27-
highLatency: 7000
25+
txCount: 10000
26+
measureInterval: 1000
27+
highLatency: 3500
2828
failOnHighLatency: true
2929
configVars:
3030
privateKey: "walletPrivkey"

playbooks/dev/tx-pool-check.yaml

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tasks:
2424
config:
2525
txCount: 1000
2626
measureInterval: 100
27-
highLatency: 5000
27+
highLatency: 1000
2828
failOnHighLatency: true
2929
configVars:
3030
privateKey: "walletPrivkey"
@@ -80,36 +80,7 @@ tasks:
8080
config:
8181
txCount: 15000
8282
measureInterval: 1500
83-
highLatency: 5000
84-
failOnHighLatency: true
85-
configVars:
86-
privateKey: "walletPrivkey"
87-
- name: tx_pool_clean
88-
title: "Clean transaction pool"
89-
timeout: 40m
90-
config:
91-
waitTime: 5
92-
- name: tx_pool_throughput_analysis
93-
timeout: 40m
94-
title: "Check transaction pool throughput with 20.000 transactions in one second"
95-
config:
96-
qps: 20000
97-
measureInterval: 2000
98-
configVars:
99-
privateKey: "walletPrivkey"
100-
- name: tx_pool_clean
101-
title: "Clean transaction pool"
102-
timeout: 40m
103-
config:
104-
waitTime: 5
105-
- name: tx_pool_latency_analysis
106-
title: "Check transaction pool latency with 20.000 transactions"
107-
timeout: 40m
108-
config:
109-
txCount: 20000
110-
measureInterval: 2000
11183
highLatency: 7000
11284
failOnHighLatency: true
11385
configVars:
11486
privateKey: "walletPrivkey"
115-

0 commit comments

Comments
 (0)