You have a blob storage bucket that stores user-uploaded photos. Most photos are accessed frequently for the first week, then rarely afterwards. Which storage tier choice best balances cost and access speed?
Think about how access frequency changes over time and how storage tiers differ in cost and speed.
The hot tier is optimized for frequent access but costs more. The cool and archive tiers cost less but have slower access. Moving photos after one week balances cost and performance.
You overwrite an existing file in an Amazon S3 bucket and immediately try to read it from another client. Sometimes the old version is returned. What explains this behavior?
Consider the difference between new object creation and overwriting existing objects.
S3 provides read-after-write consistency for new objects in most regions, but eventual consistency for overwrites and deletes.
You want to allow an application to upload files to a specific container in Azure Blob Storage without giving full storage account access. Which approach follows the least privilege principle?
Think about granting only the permissions needed and for a limited time.
A SAS token scoped to the container with write permission and expiry limits access to only what the app needs, following least privilege.
You want to host a static website using an Amazon S3 bucket. Which configuration is required to serve the website correctly?
Think about what S3 needs to serve files as a website.
Enabling static website hosting and specifying the index document allows S3 to serve the website content properly.
Your company requires a disaster recovery plan for blob storage that ensures data durability and availability even if one cloud region fails. Which design best meets this requirement?
Consider built-in replication options that provide automatic failover or read access.
GRS and RA-GRS replicate data asynchronously to a secondary region, providing durability and availability during regional outages.