A maritime fleet management company is designing a high-availability telemetry processing system on AWS. The application runs on Amazon ECS containers across multiple Availability Zones in the primary region (`eu-west-1`). The containers require concurrent read/write access to a shared POSIX-compliant file system. The architecture must support a multi-region disaster recovery (DR) plan in `eu-central-1` with a Recovery Point Objective (RPO) of 15 minutes and a Recovery Time Objective (RTO) of 10 minutes. During failover, the file system in the recovery region must be immediately writable without latency or performance degradation. Which combination of configurations will meet these requirements? (Select TWO.)
- Create an Amazon Elastic File System (Amazon EFS) file system in `eu-west-1` using the Regional storage class, and configure Amazon EFS Replication to a destination file system in `eu-central-1`.Cevap
- In the disaster recovery region (`eu-central-1`), configure the ECS task definitions to mount the replica EFS file system using its native mount target when initiating failover.Cevap
- CStore the telemetry files in Amazon S3 in `eu-west-1`, configure S3 Cross-Region Replication (CRR) to an S3 Glacier Flexible Retrieval bucket in `eu-central-1`, and use Standard retrievals during failover.
- DImplement a Pilot Light disaster recovery strategy by deploying active, fully running ECS tasks in `eu-central-1` that continuously mount the `eu-west-1` EFS file system via an inter-region VPC peering connection.
- EConfigure an Amazon Aurora PostgreSQL Global Database with write forwarding enabled in the primary database cluster in `eu-west-1` to act as the shared POSIX-compliant mount target for the ECS containers.
Cevap
Deploying an Amazon EFS file system in the primary region with replication configured to the secondary region, and configuring the secondary region's ECS tasks to mount the replicated EFS file system.
Deploying Amazon EFS with native replication guarantees that files are automatically copied across regions with low latency, satisfying the 15-minute RPO. In the event of a failover, mounting the local replicated file system in the secondary region allows ECS containers to start up and begin executing operations instantly, comfortably staying within the 10-minute RTO.
Adım Adım Çözüm
Anahtar Kavram
Multi-Region shared storage resilience utilizing Amazon EFS Replication to achieve low recovery metrics.