An enterprise is designing the storage infrastructure for a financial analytics application that is migrating to Azure. The application has the following requirements:
- A database running on an Azure Virtual Machine requires a dedicated managed disk for write-heavy transaction logs with a performance target of IOPS and sub-millisecond write latency.
- A shared volume must be mounted concurrently by ten Linux servers to process incoming CSV files via the NFS v4.1 protocol with sub-millisecond latency.
- Telemetry logs must be stored cost-effectively for five years. The logs are rarely accessed but must be available for immediate, sub-second query execution when requested.
Which two storage configurations should you include in the design?
- Premium SSD v2 managed disks for the database transaction logsAnswer
- An Azure Files Premium tier file share for the shared volumeAnswer
- CAzure Blob Storage Archive tier for the telemetry logs
- DStandard HDD managed disks for the database transaction logs
- EAn Azure Blob Storage account configured with Locally Redundant Storage (LRS) for critical telemetry logs to ensure survival during a primary datacenter outage
Answer
Premium SSD v2 managed disks for the database transaction logs and an Azure Files Premium tier file share for the shared volume
Premium SSD v2 managed disks provide the sub-millisecond write latency and high IOPS capabilities needed for transaction logs. Azure Files Premium tier is required because NFS v4.1 shares are only supported on the Premium tier.
Step-by-Step Solution
Key Concept
Selecting Azure storage services and tiers based on latency, performance, protocol, and redundancy requirements.