ops(publish): temporarily force 50 workers#729
Merged
Conversation
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
Problem
After the emergency rollback in #728, the durable capacity controller remained at the four-worker ceiling written before the rollback. The controller had begun gradual recovery, but the incident backlog remained above 500 items and useful delivery was still below arrivals.
This is an operator-directed temporary throughput override intended to clear the incident backlog. It is not presented as a root-cause repair.
Implementation
Set these production Worker bindings to
50:EXACT_REVIEW_PUBLICATION_MIN_CONCURRENTEXACT_REVIEW_PUBLICATION_BASE_CONCURRENTEXACT_REVIEW_PUBLICATION_MAX_CONCURRENTSetting all three values is intentional: on deployment, the controller clamps the persisted four-worker ceiling and demand target to 50 without resetting or directly editing Durable Object state.
Validation
At the maintainer's explicit emergency direction, the normal Codex review loop was stopped and waived for this configuration-only incident override.
Risks and rollout
stateref.published + supersededthroughput, pending depth, retry amplification, and state-contention dead letters rather than treating workflow completion alone as recovery.Rollback
Restore the prior adaptive values after the backlog clears or if contention worsens:
No queue reset, replay, dead-letter mutation, gate change, lease-timeout change, or state-layout change is included.
Related: #725, #727, #728