feat: graceful shutdown, circuit breaker, retry backoff & batch tx support#171
Merged
AbelOsaretin merged 2 commits intoJun 30, 2026
Merged
Conversation
…port Closes Heliobond#54, Heliobond#55, Heliobond#56, Heliobond#57 - Heliobond#57: Graceful shutdown — handle SIGTERM/SIGINT, stop all tracked cron jobs, drain in-flight HTTP requests via server.close(), drain RPC pool with up to 10 s wait; log each step; guard crons with isShuttingDown flag. - Heliobond#56: Circuit breaker for Stellar RPC — new CircuitBreaker class with configurable failure threshold, CLOSED/OPEN/HALF_OPEN states, recovery timeout, and fallback behaviour. Wired into withRpcConnection(); breaker metrics exposed on /health; /ready now checks rpc_circuit state. RPC health tracking (consecutiveFailures, outageDuration) replaces stubs. - Heliobond#55: Transaction retry with exponential backoff — new withRetry() util with configurable maxAttempts, baseDelayMs, maxDelayMs, and jitter. Distinguishes transient vs permanent errors (no retry on bad auth etc.). _executeSignAndSubmitWithRetry now delegates to withRetry. Also ships tx-queue.ts and error-limiter.ts which index.ts already imports. - Heliobond#54: Batch transaction support — isSorobanBatchAvailable() detection stub (returns false until Soroban ships native batching); runJob() routes to runBatchNative() or runBatchSequential() fallback; adds per-item duration tracking and post-job benchmarking metrics.
|
@covenantalade 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! 🚀 |
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.
Closes #54
Closes #55
Closes #56
Closes #57
What changed
#57 – Graceful shutdown
requests via server.close(), then drain the RPC pool (10 s timeout)
tasks are tracked and can be stopped cleanly
#56 – Circuit breaker for Stellar RPC
CLOSED → OPEN → HALF_OPEN states
RPC_BREAKER_RECOVERY_TIMEOUT_MS env vars
RpcDegradedError as fallback when OPEN
isRpcOutageExtended, getRpcStatus) with real implementations
rpc_circuit check
#55 – Transaction retry with exponential backoff
maxAttempts, baseDelayMs, maxDelayMs, and jitter
(bad auth, insufficient balance, no account, etc.)
instead of a hand-rolled loop
that index.ts already imported
#54 – Batch transaction support
Soroban ships native batching (monitor stellar/stellar-core)
throughput_per_second) attached to each completed BatchJob
Testing