A reporting application stores files in Azure Blob Storage. The business wants the secondary region to be readable if the primary region becomes unavailable. Which redundancy option should you use?
RA-GRS (Read-Access Geo-Redundant Storage) replicates your blob data asynchronously to a paired secondary region and, unlike standard GRS, automatically exposes a public read-access endpoint on that secondary copy. This fulfills the requirement of being able to read the reporting data from a secondary region, even while the primary region is operational. The asynchronous replication means the secondary copy is eventually consistent, but that trade-off is acceptable for a reporting application that can tolerate slight read lag.
Why this answer
(RA-GRS) is correct because it provides geo-replication by asynchronously copying data to a secondary region and enables read access to that secondary endpoint. If the primary region becomes unavailable, the application can continue reading from the secondary region, meeting the business requirement for readable secondary access during a primary outage.
Exam trap
The trap here is that candidates often confuse ZRS (zone-redundant within a region) with geo-redundant options, or mistakenly think LRS provides any cross-region resilience, when only RA-GRS offers both geo-replication and read access to the secondary region.
Why the other options are wrong
LRS only replicates data within a single data center in the primary region, providing no redundancy for a regional outage. The business requirement is for readable secondary region access, which LRS cannot fulfill.
ZRS replicates data synchronously across availability zones within a single region, providing no geo-redundancy or read access to a secondary region if the primary becomes unavailable.
Archive is a blob access tier, not a redundancy option. It does not provide replication or read access to a secondary region.