Study DOP-C02 blue-green, canary, immutable, EC2, container, and Lambda deployment strategy decisions.
Deployment strategy questions on DOP-C02 are about release risk and rollback speed. AWS wants you to match the rollout method to the runtime, the blast radius, and the recovery expectation.
| Requirement | Strongest first fit | Why |
|---|---|---|
| Lowest blast radius on a live user path | Canary or weighted shift | Exposure increases gradually |
| Fast switch to a new environment with clean rollback | Blue/green | Traffic can move back quickly |
| Minimize configuration drift on hosts | Immutable deployment | New instances replace changed ones |
| Lambda function release with controlled exposure | Alias or weighted traffic shifting | Native fit for serverless rollout control |
Do not choose a rollout method in the abstract. DOP-C02 expects you to think about:
If the question stresses critical production impact, the best answer usually includes: