nerdexam
CompTIA

CV0-003 · Question #12

A cloud administrator is tasked with ensuring redundancy and high availability of an IaaS cloud platform environment. The administrator is given the following requirements: Two web servers must…

The correct answer is A. The web server should be configured with a round-robin DNS with a CNAME record. D. The database server should be configured as an active-passive cluster. Web servers needing even traffic distribution use round-robin DNS, while database servers where only one node is active at a time require an active-passive cluster configuration.

Cloud Architecture and Design

Question

A cloud administrator is tasked with ensuring redundancy and high availability of an IaaS cloud platform environment. The administrator is given the following requirements:

Two web servers must share the same configurations and service client connections evenly. Two database servers must share data and configurations, with only one being used at a time. Given the above, which of the following should the administrator propose to BEST meet these requirements? (Select TWO).

Options

  • AThe web server should be configured with a round-robin DNS with a CNAME record.
  • BThe web server should be configured with a load balancer with a virtual IP address.
  • CThe database server should be configured as an active-active cluster.
  • DThe database server should be configured as an active-passive cluster.
  • EThe availability aspect of the request does not currently exist in the IaaS cloud platform.
  • FThe redundancy aspect of the request does not currently exist in the IaaS cloud platform.

How the community answered

(44 responses)
  • A
    68% (30)
  • B
    5% (2)
  • C
    16% (7)
  • E
    2% (1)
  • F
    9% (4)

Why each option

Web servers needing even traffic distribution use round-robin DNS, while database servers where only one node is active at a time require an active-passive cluster configuration.

AThe web server should be configured with a round-robin DNS with a CNAME record.Correct

Round-robin DNS with a CNAME record rotates DNS responses across the IP addresses of both web servers, distributing client connections evenly while both servers maintain identical configurations. This satisfies the requirement for balanced load sharing across two uniformly configured web servers without requiring dedicated load balancer hardware.

BThe web server should be configured with a load balancer with a virtual IP address.

A load balancer with a virtual IP also distributes traffic evenly but introduces additional infrastructure complexity beyond what round-robin DNS provides for this scenario, and the exam selects A as the correct web server solution.

CThe database server should be configured as an active-active cluster.

An active-active cluster has both database nodes simultaneously processing client requests, which violates the stated requirement that only one database server is in use at a time.

DThe database server should be configured as an active-passive cluster.Correct

An active-passive database cluster keeps one node actively handling all read/write operations while the second node remains synchronized but idle, taking over only upon primary node failure. This directly satisfies the requirement that only one database server is used at a time while still providing data redundancy and high availability.

EThe availability aspect of the request does not currently exist in the IaaS cloud platform.

Availability mechanisms such as DNS-based distribution and VM clustering are standard features of IaaS cloud platforms and do exist, making this claim factually incorrect.

FThe redundancy aspect of the request does not currently exist in the IaaS cloud platform.

Redundancy features including VM replication and clustered storage are standard IaaS offerings that do exist on the platform, making this claim factually incorrect.

Concept tested: Round-robin DNS and active-passive clustering for high availability

Source: https://learn.microsoft.com/en-us/azure/architecture/guide/technology-choices/load-balancing-overview

Topics

#high availability#load balancing#active-passive cluster#redundancy

Community Discussion

No community discussion yet for this question.

Full CV0-003 Practice