fix(db): retry migration lock timeouts within a time budget instead of eight attempts - #8190
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
Contributor
There was a problem hiding this comment.
All reported issues were addressed across 3 files
Reply with feedback, questions, or to request a fix.
Fix all with cubic | Re-trigger cubic
…ever start an attempt past it
Collaborator
Author
Collaborator
Author
|
@cubic-dev-ai review this PR |
Contributor
@waleedlatif1 I have started the AI code review. It will take a few minutes to complete. |
This branch was successfully deployed
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
migrate.tsgave up after 8 lock timeouts (~2.5 min of 5 s waits). On a table that long-running write transactions hold all the time, anACCESS EXCLUSIVEDDL lock only becomes available in short gaps, and eight tries often miss every gaplock_timeout, so a queued DDL lock never blocks traffic on the table for longer than 5 sscripts/lock-timeout-retry.tsso it can be tested, and the strandedrunMigrationsWithRetryTSDoc is moved back onto its functionType of Change
Testing
lock-timeout-retry.test.ts(5 tests, fake clock): retries past 8 attempts within budget, stops before the budget ends, finds 55P03 in a cause chain, fails fast on other errorsADD COLUMNmigrations on a table and heldACCESS SHAREon it for 40 s from another session. The old script would have given up after 8 attempts in a longer outage. The new one logged 4 lock-timeout retries and applied both migrations at 52 sbun run type-check(packages/db), biome, andbun run check:audits(47 audits) passChecklist