Challenge - 5 Problems
PITR Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ query_result
intermediate2:00remaining
PITR Status Check
You have enabled Point-in-time recovery (PITR) on a DynamoDB table named Orders. Which query will correctly show the current PITR status of this table?
DynamoDB
aws dynamodb describe-continuous-backups --table-name Orders
Attempts:
2 left
💡 Hint
Look for the command that specifically describes continuous backups.
✗ Incorrect
The command 'describe-continuous-backups' returns the PITR status for the specified table. Other commands either list backups or describe the table but do not show PITR status.
🧠 Conceptual
intermediate1:30remaining
Understanding PITR Recovery Window
What is the maximum time window for which you can restore a DynamoDB table using Point-in-time recovery (PITR)?
Attempts:
2 left
💡 Hint
Think about how long AWS retains continuous backups for PITR.
✗ Incorrect
DynamoDB PITR allows restoring data from any point in time within the last 35 days.
📝 Syntax
advanced2:00remaining
Enable PITR Using AWS CLI
Which AWS CLI command correctly enables Point-in-time recovery (PITR) on a DynamoDB table named Customers?
Attempts:
2 left
💡 Hint
The command uses 'update-continuous-backups' with a specific JSON flag.
✗ Incorrect
The correct command to enable PITR is 'update-continuous-backups' with the '--point-in-time-recovery-specification PointInTimeRecoveryEnabled=true' parameter.
❓ optimization
advanced2:00remaining
Cost Optimization with PITR
You want to minimize costs while using PITR on a DynamoDB table. Which practice helps reduce unnecessary charges related to PITR?
Attempts:
2 left
💡 Hint
PITR charges apply while it is enabled, so controlling enablement timing helps.
✗ Incorrect
Enabling PITR only when needed reduces costs because charges apply only while PITR is enabled. Disabling it when not needed avoids unnecessary charges.
🔧 Debug
expert2:30remaining
Troubleshooting PITR Restore Failure
You tried to restore a DynamoDB table using PITR to a point 40 days ago, but the restore failed. What is the most likely reason?
Attempts:
2 left
💡 Hint
Consider the maximum retention period for PITR backups.
✗ Incorrect
PITR only allows restoring data from the last 35 days. Attempting to restore beyond this window will fail.