-
Notifications
You must be signed in to change notification settings - Fork 43
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
feat: indexer cold start (WIP) #566
Conversation
…exer_cold_start # Conflicts: # src/node/src/command.rs # src/node/src/indexer_impl.rs # src/node/src/recover.rs # src/storage/src/meta_store_client.rs # src/storage/src/state_store.rs # tools/start_localnet.sh
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## main #566 +/- ##
=======================================
Coverage 63.97% 63.97%
=======================================
Files 9 9
Lines 433 433
Branches 64 64
=======================================
Hits 277 277
Misses 156 156
Flags with carried forward coverage won't be shown. Click here to find out more. 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
PR-Codex overview
This PR focuses on adding block state information and implementing block recovery functionality.
Detailed summary
BlockState
message in the proto file.StoreSDKV2
to includeget_blocks
andget_block_by_height
methods.Recover
to include block recovery from fetched blocks.IndexerNodeImpl
to include block recovery and block event handling.