fix: retry for database transaction errors. Fixes #16101#16102
Open
isubasinghe wants to merge 1 commit into
Open
fix: retry for database transaction errors. Fixes #16101#16102isubasinghe wants to merge 1 commit into
isubasinghe wants to merge 1 commit into
Conversation
Signed-off-by: isubasinghe <isitha@pipekit.io>
isubasinghe
commented
May 15, 2026
1a67ae1 to
7232704
Compare
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.
Fixes #16101
Motivation
Workflows using database-backed mutexes or semaphores fail permanently on PostgreSQL SQLSTATE 40001 during lock acquisition. 40001 is a normal serializable-isolation
conflict; the retry loop in
TryAcquireis built for it but never fires.databaseSemaphore.acquiredrops the SQL error and returns plainfalse.tryAcquireImplwraps the bare failure asbug: failed to acquire something that should have been checked:(empty payload). The retry detector substring-matchesserialization/dependencies/deadlock/rollbackagainst that string, finds nothing, and givesup after one attempt.
Modifications
acquirereturns(bool, error);tryAcquirereturns(bool, string, error). SQL error propagates.tryAcquireImplreturns the underlying error directly. Thebug:wrap stays for its original case:(false, nil)aftercheckAcquireapproved.retry.OnErrorandwait.Backoff{Duration: 10ms, Factor: 2, Steps: 5, Jitter: 0.5, Cap: 600ms}. Old loop had zero delay; jitter avoidsreplica lockstep.
isRetryableSyncError.prioritySemaphoreand thesemaphoreinterface updated to match. In-memoryacquirereturns nil error.Initializecallers still drop the error — pre-existing,separate change.
Verification
Test pass
Documentation
None needed.
AI
Claude Code (Claude Opus 4.7) used for investigation, tests, fix, and this description. Reviewed by hand;
Capraised from 200ms to 600ms during review.