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
all rpc blocking tasks is currently executed on the same threadpool which is fifo, once saturated with a lot of long running tracing requests, this can cause latencies for other, cheaper rpc requests that require blocking io, like eth_ namespace.
tracing is bottlenecked by CPU and perhaps a dedicated rayon threadpool is more suitable here.
Describe the feature
all rpc blocking tasks is currently executed on the same threadpool which is fifo, once saturated with a lot of long running tracing requests, this can cause latencies for other, cheaper rpc requests that require blocking io, like
eth_
namespace.tracing is bottlenecked by CPU and perhaps a dedicated rayon threadpool is more suitable here.
ref #3896
Additional context
No response
The text was updated successfully, but these errors were encountered: