Question 21:
You have been tasked with creating file-level restore on your EC2 instances. You already have access to all the frequent snapshots of the EBS volume. You need to be able to restore an individual lost file on an EC2 instance within 15 minutes of a reported loss of information. The acceptable RPO is several hours. How would you perform this on an EC2 instance? Choose an answer from the options below.
Answer options:
A.Set up a cron that runs aws s3 cp on the files and copy the EBS volume files to S3. B.Turn off the frequent snapshots of EBS volumes. Create a volume from an EBS snapshot, attach the EBS volume to the EC2 instance at a different mount location, cutover the application to look at the new backup volume and remove the old volume. C.Create a volume from the snapshot to be restored and attach the EBS volume to the same EC2 instance at a different mount location, browse the file system on the newly attached volume and select the file that needs to be restored, copy it from the new volume to the original source volume. D.Create a new EC2 instance from the recent snapshot and copy all the system files from the new EC2 instance to the old EC2 instance.