An organization is designing a shared storage solution for a financial reporting application hosted on Azure Virtual Machines. The application has the following requirements:
- Concurrent access from multiple VMs using the SMB protocol.
- High-throughput, sub-millisecond latencies for metadata operations.
- Maximum resilience against localized datacenter outages within the primary Azure region.
- Access to the storage must be secured using Shared Access Signatures (SAS) that can be instantly revoked if compromised, without rotating the storage account keys.
Which storage configuration should you recommend?
- Premium Azure Files share with Zone-Redundant Storage (ZRS), secured using SAS tokens associated with a stored access policyAnswer
- BPremium Azure Files share with Locally Redundant Storage (LRS), secured using SAS tokens associated with a stored access policy
- CStandard Azure Files share with Zone-Redundant Storage (ZRS), secured using ad-hoc SAS tokens with a five-year lifetime
- DStandard SSD Azure Managed Disks configured with Locally Redundant Storage (LRS) and shared using Azure Shared Disks
Answer
Premium Azure Files share with Zone-Redundant Storage (ZRS), secured using SAS tokens associated with a stored access policy
The correct configuration uses Premium Azure Files with Zone-Redundant Storage (ZRS) and SAS tokens tied to a stored access policy. Premium Azure Files guarantees sub-millisecond latency for metadata-heavy operations. ZRS replicates data across three availability zones within the primary region, providing high availability against datacenter failures. Stored access policies allow granular control and immediate revocation of SAS tokens without rotating the storage account keys.
Step-by-Step Solution
Key Concept
Selecting the correct Azure Files tier, redundancy model, and access security configuration to meet performance, high availability, and compliance requirements.