DOP-C02 Resilient Cloud Solutions Practice Question
A company wants to ensure that its application can recover from an Amazon S3 service disruption. The application reads and writes data to S3. Which strategy should the application implement to achieve resilience?
⚠ Common exam trap
It's easy for candidates to confuse S3 Cross-Region Replication (CRR) with automatic failover, but CRR is asynchronous and does not provide built-in failover; the application must still implement its own fallback logic to achieve resilience.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Implement application logic to fall back to an S3 bucket in a different Region if the primary bucket is unavailable
Implementing application logic to fall back to an S3 bucket in a different Region provides resilience against a regional S3 service disruption. S3 buckets are regional resources, so if one Region experiences an outage, the application can redirect reads and writes to a bucket in another Region. This approach requires the application to handle errors from the primary bucket and switch to the secondary bucket, ensuring continued availability without relying on automatic failover mechanisms that may not be instantaneous.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Store all data in a single S3 bucket with versioning enabled
Why it's wrong here
Versioning only protects against accidental deletion or overwrite by preserving prior versions; it does nothing to address regional availability. If the entire AWS Region where the bucket resides becomes unavailable, the application cannot reach any data in that bucket, regardless of versioning. Versioning is a data integrity feature, not a disaster recovery or high availability mechanism. Thus this fails the requirement for regional recoverability.
- ✓
Implement application logic to fall back to an S3 bucket in a different Region if the primary bucket is unavailable
Why this is correct
This pattern gives the application explicit control over failover by first attempting to read from the primary bucket and, on failure (e.g., throttling, regional outage, or S3 service disruption), switching to a pre-created bucket in another Region. It is a common active-passive architecture that avoids reliance on any AWS feature providing automatic DNS-level or data-plane failover. Because the application itself detects the failure, it can also manage consistency, replication lag, and write buffering appropriately. This satisfies the recovery requirement because data availability is maintained as long as at least one Region is operational.
- ✗
Enable S3 Cross-Region Replication with automatic failover
Why it's wrong here
S3 Cross-Region Replication (CRR) asynchronously copies objects to a destination bucket in another Region, but it does not provide automatic failover. AWS explicitly requires the application to handle redirecting traffic; CRR only replicates data, not availability. Moreover, CRR has a replication time objective (typically minutes to hours) and does not update the bucket's DNS or routing in an outage. Therefore, 'automatic failover' is a misconception and the option is incorrect.
- ✗
Use S3 Transfer Acceleration to improve data transfer speed
Why it's wrong here
S3 Transfer Acceleration uses AWS edge locations to speed up uploads over long distances by routing data through Amazon's network, but it only optimizes transfer performance, not availability or durability. It does not change the fact that the underlying data remains in a single bucket in a single Region; if that Region fails, the data remains unreachable. Transfer Acceleration does not provide any recovery or failover capability, so it is irrelevant to the recovery requirement.
Quick reference
AWS S3 Storage Class Comparison
| Storage Class | Min Duration | Retrieval | Use Case |
|---|---|---|---|
| S3 Standard | None | Immediate | Frequently accessed data |
| S3 Standard-IA | 30 days | Immediate | Infrequent access, rapid retrieval |
| S3 One Zone-IA | 30 days | Immediate | Non-critical infrequent data |
| S3 Intelligent-Tiering | None | Immediate–hours | Unknown or changing access patterns |
| S3 Glacier Instant | 90 days | Milliseconds | Archive with instant retrieval |
| S3 Glacier Flexible | 90 days | Minutes–hours | Archive, flexible retrieval |
| S3 Glacier Deep Archive | 180 days | Hours | Long-term compliance archive |
Go deeper
Related to this question
About these practice questions
One of 251 original DOP-C02 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This DOP-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DOP-C02 exam.