CV0-003 · Question #797
A developer wants to use an environment that has two sets of servers, with one active and one passive at any time. When a new version of the application is ready, it will be installed to the passive s
The correct answer is B. Blue-green. Blue-green deployment uses two identical environments where one is live (blue) and one is idle (green), with traffic switched over when the new version is validated on the idle set.
Question
A developer wants to use an environment that has two sets of servers, with one active and one passive at any time. When a new version of the application is ready, it will be installed to the passive servers, which will then become active. Which of the following environment types BEST describes these two sets of servers?
Options
- ADisaster recovery
- BBlue-green
- CDevelopment
- DStaging
How the community answered
(35 responses)- A3% (1)
- B89% (31)
- C3% (1)
- D6% (2)
Why each option
Blue-green deployment uses two identical environments where one is live (blue) and one is idle (green), with traffic switched over when the new version is validated on the idle set.
Disaster recovery environments are standby replicas designed to take over during a failure event, not for routine application deployment workflows.
In a blue-green deployment strategy, two parallel server sets are maintained - one actively serving traffic and one passive. When a new release is ready it is deployed to the passive set, which is then promoted to active by redirecting traffic, allowing instant rollback by reverting the switch. This matches exactly the described scenario of active and passive server sets that swap roles on each release.
A development environment is where code is written and unit-tested by developers, not a production-mirrored passive server set used for release promotion.
A staging environment is a single pre-production environment used for final testing before release, not a paired active-passive setup that swaps on deployment.
Concept tested: Blue-green deployment strategy active-passive environments
Source: https://learn.microsoft.com/en-us/azure/architecture/guide/deployment/blue-green-deployment
Topics
Community Discussion
No community discussion yet for this question.