Add resilient reminder retry monitoring#1042
Open
szyunlin wants to merge 1 commit into
Open
Conversation
Author
|
Verification update for #130:
The implementation keeps the existing reminder flow, adds persisted retry/dead-letter state, exposes |
Author
|
Short demo recording for #130: https://asciinema.org/a/z9lb8UXrBvML7I77 It shows the committed change summary and the focused reminder retry tests passing ( |
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.
Summary
Implements resilient reminder background-job retry and monitoring for #130.
/reminders/runso one provider failure no longer blocks other due reminders. Successful reminders are marked sent, transient failures are scheduled with bounded 5/15/45 minute backoff, and exhausted jobs move to a failed state./reminders/jobsfor retry/dead-letter monitoring andPOST /reminders/{id}/retryfor manual reset.Verification
sh ./scripts/test-backend.sh tests/test_reminders.pypassed: 4 tests.sh ./scripts/test-backend.shpassed: 24 tests.docker compose run --rm backend sh -lc "black --check app tests && flake8 app tests"passed./claim #130