You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cherry-picked PR26092 suffers the performance issue. we might wait for the future go-ethereumv1.11.0 release. it also means there is little possibility of picking all code changes into the old v.1.10.21 branch.
The issue is caused by ethereum/go-ethereum#26071
fastcache
cause the memory leak, the go-ethereum might change to an new caching library that does not need an explicit close mechanismruntime.finalizer
works for our OOM issue, but the current fix is not safe enough for us to use.fastcache
by ourself1.21-qng
fastcache
by thegit.luolix.top/hashicorp/golang-lru/simplelru
see core/state: replace fastcache code cache with gc-friendly structure ethereum/go-ethereum#26092ulimit -v unlimited
), thefastcache
use the unix mmap for the heap-off allocation.The text was updated successfully, but these errors were encountered: