You are designing the storage infrastructure for a business-critical SQL Server database running on an Azure Virtual Machine. The database transaction logs require a dedicated disk that supports up to IOPS and sub-millisecond latency. The architecture must survive a zone failure in the primary region. Additionally, database backup exports must be securely stored in an Azure Blob Storage container and accessed by a third-party auditing application using a Shared Access Signature (SAS) token that can be revoked immediately if compromised.
Which storage configuration should you recommend?
- AConfigure the transaction log drive on Premium SSD managed disks using Locally Redundant Storage (LRS). Store the backup exports in a Blob Storage container and authorize the auditing application using a SAS token associated with a stored access policy.
- Configure the transaction log drive on Premium SSD managed disks using Zone-Redundant Storage (ZRS). Store the backup exports in a Blob Storage container and authorize the auditing application using a SAS token associated with a stored access policy.Answer
- CConfigure the transaction log drive on Standard SSD managed disks using Zone-Redundant Storage (ZRS). Store the backup exports in a Blob Storage container and authorize the auditing application using a SAS token associated with a stored access policy.
- DConfigure the transaction log drive on Premium SSD managed disks using Zone-Redundant Storage (ZRS). Store the backup exports in a Blob Storage container and authorize the auditing application using an ad-hoc SAS token with a 2-year expiration time.
Answer
Configure the transaction log drive on Premium SSD managed disks using Zone-Redundant Storage (ZRS). Store the backup exports in a Blob Storage container and authorize the auditing application using a SAS token associated with a stored access policy.
The correct configuration uses Premium SSD to meet the IOPS and latency requirements of database transaction logs, employs Zone-Redundant Storage (ZRS) to ensure zone resiliency, and utilizes a stored access policy for the SAS token to allow immediate revocation.
Step-by-Step Solution
Key Concept
Azure managed disk performance tiers, zone redundancy, and stored access policies for secure SAS token revocation.
Estimated Time:1m 30s