Release 2026.2.1#730
Merged
Merged
Conversation
- CLINGEN_CACHE_WARMING_CONCURRENCY and RECODER_CONCURRENCY can now be tuned via environment variables without redeploying; both default to 5, preserving existing behaviour
VEP jobs were timing out before completing on large score sets. - ARQ hard-kill timeout raised from 2 h to 3 h - Stall-detection threshold raised from 90 min to 150 min, preserving the 30-minute buffer below the ARQ timeout
…T DO NOTHING The prior upsert used db.add() after a SELECT check. Because db.add() stages objects without flushing, a subsequent SELECT within the same transaction still found no committed row — so processing two alleles that share a PA produced duplicate pending inserts, crashing at the next update_progress commit with a UniqueViolation. Switching to a batched INSERT ... ON CONFLICT DO NOTHING makes the write atomic and idempotent within a transaction. Also adds: - Direct unit tests for upsert_variant_translations covering deduplication, partial overlap, and cross-call idempotency - Regression test for the multi-allele shared-PA scenario
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.
Patch release with incremental worker improvements: