← Reference · Nestor G Pestelos Jr · Print this page
Software Engineering · Organizational Dynamics
Acceleration Whiplash
Reference entry · last updated 20260908
Previous version (before the 20260908 evidence revision).
Acceleration whiplash is Faros AI’s term for increased engineering output accompanied by downstream review and quality costs during greater adoption of generative AI. Its 2026 report describes this pattern in customer telemetry.[1] The observations do not establish that AI caused the changes.[2]
First principles and definitions
A software delivery process includes authoring, code review, testing, and release. A pull request (PR) proposes a change; a review queue contains changes waiting for attention. Quality assurance includes the processes used to build confidence that requirements will be met.
Queueing theory distinguishes the rate at which work arrives from the capacity to complete it. If arrivals persistently exceed capacity and work is neither rejected nor withdrawn, the backlog grows. Variability can also cause waiting below average capacity.[4]
A possible throughput mismatch
Applied to review, this model predicts a backlog when more changes arrive than reviewers can assess. Faster authoring can expose that constraint, but authoring need not have been the original bottleneck. Smaller changes, better tooling, or more reviewer capacity can alter the result.
This is an application of the queueing model, not a causal finding from the Faros study.
Reported observations
Faros reports two years of telemetry from 22,000 developers and more than 4,000 teams. It compares each organization’s lowest and highest AI-adoption periods.[1]
| Metric | Change |
|---|---|
| Completed epics per developer | +66% |
| Incidents per pull request | +242.7% |
| Median time in review | +441.5% |
| Pull requests merged without review | +31.3% |
| Code churn: deleted / added lines, per quarter | +861% |
Sources: Faros’s takeaways and methodological discussion.[1][2] An epic groups related tasks. Epics completed is not a measure of code-generation speed. The incident ratio is not the probability that one PR causes an incident.
Code churn here means deleted lines divided by added lines in merged code during a quarter. It does not identify when those deleted lines were written. Refactoring and rework are both possible explanations.[1]
Evidence limits
This is vendor observational research. Faros explicitly acknowledges that its data cannot isolate differences between organizations and establishes correlation rather than causation.[2]
Its report landing page also claims causal analysis that isolates AI’s impact.[3] That conflicts with the stated observational limit. This entry uses the narrower interpretation. The reported changes should not be treated as forecasts for every team, or as measurements of reviewer fatigue.
Possible responses
The following are engineering options to evaluate locally; the Faros observations do not establish their effectiveness as a combined remedy.
- Control incoming work. Match active review requests to available capacity. Track queue age and completed reviews.
- Reduce batch size. Keep each change focused so reviewers can understand and check it. Google’s review guidance describes the benefits of small changes.[5]
- Check intent before implementation. Plan-Approve-Execute is one option for changes where design errors would cause substantial rework.
- Check behavior before review. Property-based testing searches generated inputs for violations of stated rules.[6] Mutation testing checks whether tests detect deliberate code changes. Neither proves general reliability.
- Use additional review selectively. Adversarial agent review can add another check, but agreement between agents is not proof of correctness. Verify findings against code and executable evidence.
See also
- Generative AI
- Queueing Theory for Software Delivery
- Pull Requests
- Code Review
- Software Quality Assurance
- Code Churn
- Property-Based Testing
- Theory of Constraints
- Throughput
References
- Faros Research. Ten takeaways from the AI Engineering Report 2026: The Acceleration Whiplash.
- Faros AI. Why cheaper AI models can cost more: The hidden model tax explained.
- Faros AI. AI Engineering Report 2026: The Acceleration Whiplash.
- MIT OpenCourseWare, 2.854, Fall 2016. Markov Processes and Queues.
- Google Engineering Practices. Small CLs.
- Hypothesis project. Hypothesis documentation.