isolate consensus RPC on an optional second IPC socket - #456
Closed
MitkoTschimev wants to merge 1 commit into
Closed
MitkoTschimev wants to merge 1 commit into
MitkoTschimev wants to merge 1 commit into
Conversation
Public HTTP/WS and arc-consensus share one EthApi eth_call semaphore. Under load, get_signing_validator_set waits out ETH_DEFAULT_TIMEOUT and the CL exits. --consensus-ipcpath serves consensus on a second EthApi with 16 permits. Unset, consensus still uses --ipcpath.
MitkoTschimev
requested review from
ZhiyuCircle,
ancazamfir,
romac and
sergio-mena
as code owners
September 22, 2026 09:48
Contributor
|
Hi @MitkoTschimev, Thank you for your interest in contributing to Arc Node. This PR has been automatically closed because it does not reference a GitHub issue. All PRs must reference an existing issue using the format To contribute properly:
Please see our CONTRIBUTING.md for more details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Public HTTP/WS and
arc-consensusshare one RethEthApi, so they share oneeth_callsemaphore (--rpc.max-blocking-io-requests, default 256). When clienteth_callfills that queue, consensusget_signing_validator_setwaits, thenETH_DEFAULT_TIMEOUT(1s) kills the CL.--consensus-ipcpathopens a second jsonrpsee IPC on its ownEthApi(16 permits) and serveseth_*plusreth_subscribePersistedBlockthere. Leave it unset and consensus keeps using--ipcpath; nothing else changes.Test plan
arc-node-execution node --helpshows--consensus-ipcpathand parsing tests pass--ipcpatheth_callstill succeeds while the public HTTPeth_callqueue is saturated--auth-ipc.pathis unchanged