Test/indexer stellar event poller#349
Merged
ONEONUORA merged 2 commits intoJun 24, 2026
Merged
Conversation
|
@adefemiesther1-debug Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
ONEONUORA
approved these changes
Jun 24, 2026
ONEONUORA
left a comment
Contributor
There was a problem hiding this comment.
GReat job @adefemiesther1-debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Closes #301
Overview
This PR implements a resilient, production-ready asynchronous event indexer engine inside backend/src/indexer/worker.rs. The worker is engineered to systematically poll the Soroban RPC endpoint for ledger payment events while executing safety patterns around connection instability and indexing progress continuity.
Changes
Branch: Created and pushed test/indexer-stellar-event-poller.
New Module Implementation: Built the core asynchronous poller infrastructure within backend/src/indexer/worker.rs.
Key Capabilities Integrated:
State-Preserving Ledger Cursor: Tracks processing sequence indexes seamlessly, protecting data ingestion layers against double-processing or gaps during indexer deployment reboots.
Network Fault Resilience: Seamlessly intercepts RPC network connection dropouts or rate-limiting responses via non-blocking exponential backoff logic.
Event Filters: Targets explicit payment event topics to cut down on raw data overhead and streamline downstream event tracking.
Architectural Assertions Validated
All RPC connection interfaces operate cleanly on non-blocking async runtimes.
Thread loops handle error propagation gracefully, bypassing raw thread panics when encountering intermittent network or ledger drops.
Verification & Testing Checklist
[x] Local Execution Pass: Verified poller loops and state cursor manipulation routines pass clean using cargo test.
[x] Fault-Tolerance Evaluation: Simulating RPC node timeouts triggers appropriate delay periods without halting or corrupting local indexer data states.
[x] Workspace Linters: Passed npm run lint and baseline workspace test profiles to clear incoming CI pipelines.
[x] Atomic Deployment: Code checked in using precise conventional commit phrasing and pushed straight to origin.