File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212### Changes
1313
1414- Optimization of mutex usage in cache for reaper [ #3286 ] ( https://github.com/evstack/ev-node/pull/3286 )
15+ - Reduce tx cache retention to avoid OOM under (really) heavy tx load [ #3299 ] ( https://github.com/evstack/ev-node/pull/3299 )
1516
1617## v1.1.1
1718
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const (
2424
2525 // CleanupInterval is how often the reaper sweeps expired hashes
2626 // out of the seen-tx cache.
27- CleanupInterval = max (cache .DefaultTxCacheRetention / 10 , 5 * time .Second )
27+ CleanupInterval = max (cache .DefaultTxCacheRetention / 10 , 15 * time .Second )
2828)
2929
3030// Reaper is responsible for periodically retrieving transactions from the executor,
You can’t perform that action at this time.
0 commit comments