What Is the Change Failure Rate? Explained
Change failure rate (CFR) is the percentage of deployments that result in a degraded service or require remediation, one of the four DORA metrics.
Shipping fast is only valuable if changes hold up. Change failure rate measures the quality side of delivery: of all the changes you deploy, how many go wrong? It is a production-outcome metric, distinct from how often your CI pipeline itself goes red.
How CFR is defined
CFR is the proportion of deployments that cause a failure requiring remediation, a rollback, a hotfix, a patch, or a roll-forward. It is one of the four DORA metrics alongside deployment frequency, lead time, and mean time to recovery, and it captures the stability of what you release.
CFR vs pipeline failure rate
A pipeline failure rate measures how often CI runs fail before release; change failure rate measures how often released changes fail in production. A red pipeline ideally catches problems before they ship, lowering CFR. They are related but answer different questions: pre-release reliability versus post-release quality.
What a good CFR looks like
High-performing teams in DORA research keep change failure rates low, on the order of single-digit to low-double-digit percentages. The exact number matters less than the trend and the context; what you want is a rate that is low and stable, not climbing.
Why reliable CI helps
A trustworthy pipeline that reliably catches defects before deploy is a direct lever on CFR. If flaky and transient failures erode trust in CI, teams ship past red builds, and more defects reach production. Stable, trustworthy CI keeps bad changes from becoming production incidents.
The Latchkey angle
Latchkey self-healing managed runners support a trustworthy gate by removing environmental noise: detecting transient and mechanical failures and automatically retrying so a one-off blip does not fail your build, which helps teams trust red builds rather than ship past them.
Key takeaways
- CFR is the share of deployments that fail and need remediation.
- It is one of the four DORA delivery-performance metrics.
- It measures production outcomes, unlike a pipeline failure rate.
- Trustworthy CI lowers CFR by catching defects before they ship.