Quick Notes87 words
Deployment resiliency — quick notes
Deployment resiliency — quick notes
| Need | Mechanism |
|---|---|
| Detect real-world failure | postRouteTraffic health checks |
| Automatic reversal | on: failure steps |
| Fast manual reversal | Slot swap back, or feature flag off |
| Limit exposure first | Canary / rolling |
| Prevent concurrent deploys | Exclusive lock check |
Key pairing: postRouteTraffic is what makes on: failure meaningful — it measures health under real traffic.
Trap: non-idempotent deployment scripts. Retries mean a step may run twice.