0
0
AWScloud~20 mins

RDS backup and snapshots in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
RDS Backup Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
RDS Automated Backups Retention Period

You have an Amazon RDS instance with automated backups enabled and a retention period set to 7 days. What happens to the automated backups if you delete the RDS instance?

AAutomated backups remain indefinitely until manually deleted.
BAutomated backups are retained for the retention period after deletion and then deleted automatically.
CAutomated backups are converted to manual snapshots and retained indefinitely.
DAll automated backups are deleted immediately when the instance is deleted.
Attempts:
2 left
💡 Hint

Think about what happens to automatic backups when the source instance no longer exists.

Architecture
intermediate
2:00remaining
Choosing Between Automated Backups and Manual Snapshots

You want to ensure daily backups of your RDS database that you can keep for 30 days and restore from any day within that period. Which approach should you use?

AUse manual snapshots only and keep them indefinitely.
BEnable automated backups with a 7-day retention and create manual snapshots weekly.
CEnable automated backups with a 30-day retention period.
DCreate manual snapshots daily and delete them after 30 days.
Attempts:
2 left
💡 Hint

Consider which backup method supports automatic retention and point-in-time restore.

security
advanced
2:00remaining
Securing RDS Snapshots

You want to share an RDS manual snapshot with another AWS account but ensure the snapshot data is encrypted and secure. Which is the correct approach?

ACreate a copy of the snapshot encrypted with a customer-managed KMS key and share the copy with the other account.
BShare the unencrypted manual snapshot directly with the other account.
CEnable automated backups and share the automated backup with the other account.
DExport the snapshot data to S3 and share the S3 bucket with the other account.
Attempts:
2 left
💡 Hint

Think about encryption and sharing permissions for snapshots.

Best Practice
advanced
2:00remaining
Optimizing RDS Backup Storage Costs

Your RDS instance has automated backups enabled with a 35-day retention period, but you notice high backup storage costs. What is the best way to reduce backup storage costs without losing the ability to restore to any point in the retention period?

AEnable backup compression on the RDS instance to reduce storage size.
BReduce the automated backup retention period to 7 days and create manual snapshots weekly.
CDelete all manual snapshots to reduce storage costs.
DUse lifecycle policies to automatically delete older manual snapshots and keep automated backups.
Attempts:
2 left
💡 Hint

Consider how automated backups and manual snapshots affect storage costs and restore capabilities.

🧠 Conceptual
expert
2:00remaining
RDS Point-in-Time Restore Behavior

You have an RDS instance with automated backups enabled and a retention period of 10 days. You perform a point-in-time restore to a time 5 days ago. What is true about the restored instance?

AThe restored instance contains data exactly as it was at the chosen time, including all transactions up to that point.
BThe restored instance contains data only from the last manual snapshot before the chosen time.
CThe restored instance contains data from the latest automated backup regardless of the chosen time.
DThe restored instance contains data from the automated backup closest to the chosen time but may miss some transactions.
Attempts:
2 left
💡 Hint

Recall how point-in-time restore works with automated backups.