Which Azure storage redundancy option ensures data is replicated synchronously within a single datacenter in the same region to protect against hardware failures but not against regional outages?
Think about which option keeps copies only within the same region.
LRS replicates data synchronously three times within a single region, typically across multiple physical locations or racks, protecting against hardware failures but not against datacenter or regional outages.
What is the main benefit of using Zone-Redundant Storage (ZRS) in Azure compared to Locally Redundant Storage (LRS)?
Consider how ZRS protects against datacenter or zone failures within the same region.
ZRS replicates data synchronously across multiple availability zones in the same region, protecting against zone or datacenter failures without involving another region.
You need to design an Azure storage solution that ensures data durability even if an entire Azure region becomes unavailable. Which redundancy option should you select?
Think about which option replicates data to a different region.
GRS replicates data asynchronously to a secondary region hundreds of miles away, protecting against regional outages and disasters.
Which Azure storage redundancy option can introduce higher read latency due to asynchronous replication to a distant region, potentially affecting read consistency?
Consider the effect of replicating data across regions asynchronously.
RA-GRS replicates data asynchronously to a secondary region and provides read access to the secondary, which can cause higher read latency and eventual consistency issues compared to synchronous replication within the same region.
You manage a critical application requiring high availability and durability but have a limited budget. Which Azure storage redundancy option balances cost and protection against zone failures without replicating data to another region?
Think about synchronous replication within the same region but across zones.
ZRS provides synchronous replication across availability zones in the same region, offering higher availability than LRS at a moderate cost without the expense of cross-region replication.