-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exec Layer node getLogs requests stop after EL restart #6048
Comments
This node is outdated and must be updated for Nimbus >= v24.2.1 before Deneb (5 days deadline). |
Good point. We just finished upgrading EL nodes, will do BN next. |
Searching the logs for debug "syncEth1Chain tick"
if bnStatus == BeaconNodeStatus.Stopping:
await m.stop()
return
if m.eth1Chain.hasConsensusViolation:
raise newException(CorruptDataProvider, "Eth1 chain contradicts Eth2 consensus")
let latestBlock = try:
raiseIfNil connection.trackedRequestWithTimeout(
"getBlockByNumber",
rpcClient.eth_getBlockByNumber(blockId("latest"), false),
web3RequestsTimeout)
except CatchableError as err:
warn "Failed to obtain the latest block from the EL", err = err.msg
raise err
Maybe something weird in |
Do you have |
Extended the logs here as well to have a better understanding what's going on: |
Multi-EL is documented officially without syaing it's unstable/beta: @etan-status, @tersec, @jakubgs, maybe we can try running multi-EL again? BTW, we are running multi-EL on nimbus.mainnet: |
As far as I know multi-EL setups work fine on Holesky, but I didn't research it that closely. The question is more for Nimbus devs. |
Describe the bug
While working on Geth upgrade for a production Beacon Node running
v24.2.0-742f15
a weird behavior was discovered when the Geth node was restarted.The
getLogs
requests stopped from the beacon node:And the
eth1_chain_len
metric stopped raising.When the BN was restarted the
getLogs
requests resumed. This behavior was reproduced when Geth was restarted again:Additional context
Logs can be provided upon request from the fleet.
The text was updated successfully, but these errors were encountered: