Skip to content
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

Ensure that indexer blocks are not missed upon restart/crash #236

Open
robin-near opened this issue Feb 28, 2025 · 0 comments
Open

Ensure that indexer blocks are not missed upon restart/crash #236

robin-near opened this issue Feb 28, 2025 · 0 comments

Comments

@robin-near
Copy link
Contributor

Currently, even if the indexer is started with SyncMode::FromInterruption, it's possible that block updates are sent by the indexer but missed by the MPC node. Upon restart, the indexer is going to yield from the interruption it is aware of, but the missed blocks means that some signature requests would never be indexed. These signature requests would be ignored: if the node is a leader, then it never completes the signature. If the node is a follower but is chosen as a participant, the request would timeout waiting for the indexed signature request.

I propose the following behavior:

  • Store a "last indexed final block height" into the DB; commit it at the same time as committing signature requests in a block (also requires committing signature requests of a block in a single commit).
  • Upon startup, read the last indexed final block height, and ask the indexer to start yielding blocks from there.
  • Signature computation should include the SignatureId as well as the block height from which the signature request was indexed.
  • When participating in a signature computation, if the signature is not found while the "last indexed final block height" already passed the specified block height, the computation is aborted rather than waiting forever.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants