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
Once there is enough adoption of engine_getBlobs we can remove the delay and do the local lookup of the missing blobs immediately once we receive the block.
RPC delay should remain unchanged.
The text was updated successfully, but these errors were encountered:
we should not try to lookup the block via RPC too fast when we first see a blob sidecar. The process when we receive a blob first could be
store it
wait (maybe with the same "elastic" logic but with different params)
fetch block RPC if not received yet.
I think we can remove the attempt to recover blobs when we still don't have a block. Currently we try to download all max blobs (6). In Electra it will be even 9. I think we could be less aggressive now that we have local EL option.
the process when we receive a block could be
immediately lookup for blobs via local EL
(not sure we should add a delay here, currently we don't)
Once there is enough adoption of
engine_getBlobs
we can remove the delay and do the local lookup of the missing blobs immediately once we receive the block.RPC delay should remain unchanged.
The text was updated successfully, but these errors were encountered: