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
For example, during sync in sari it happens between 0.5-1/min
I believe this is due to the design of range_blocks_and_blobs_requests, which will drop its item if any of the two internal requests fail. Hitting the unknown request condition causes fetches data to be wasted.
Allowing each internal request in range_blocks_and_blobs_requests to be retried would reduce that waste rate. See
Description
Recently added metrics on sync show a decent count of unknown sync requests for
range_blocks
. This line herelighthouse/beacon_node/network/src/sync/network_context.rs
Line 354 in d6ba8c3
For example, during sync in sari it happens between 0.5-1/min
I believe this is due to the design of
range_blocks_and_blobs_requests
, which will drop its item if any of the two internal requests fail. Hitting the unknown request condition causes fetches data to be wasted.Allowing each internal request in
range_blocks_and_blobs_requests
to be retried would reduce that waste rate. SeeThe text was updated successfully, but these errors were encountered: