An organization is designing the storage infrastructure for a multi-tier application suite running on Azure Virtual Machines. The solution must meet the following requirements:
- High-performance, shared storage for a Linux-based cluster that supports the NFS protocol and remains available during a single zone outage.
- Disk storage for database virtual machines hosting transactional workloads that require sub-millisecond write response times and must survive zone-level failures.
- Secure, temporary access to application diagnostics logs stored in blob containers, with the ability to immediately revoke access if credentials are leaked.
Which three design decisions should you recommend to meet the requirements? (Select three.)
- Create an Azure Files Premium share configured with Zone-Redundant Storage (ZRS) for the shared file systemCevap
- Deploy Premium SSD managed disks configured with Zone-Redundant Storage (ZRS) for the database virtual machinesCevap
- Generate Shared Access Signature (SAS) tokens associated with a Stored Access Policy to grant access to the diagnostic logsCevap
- DDeploy Standard HDD managed disks configured with Locally Redundant Storage (LRS) for the database virtual machines
- ECreate an Azure Files Standard share configured with Locally Redundant Storage (LRS) for the shared file system
- FGenerate ad-hoc Shared Access Signature (SAS) tokens with a five-year lifetime for access to the diagnostic logs
Cevap
The architecture should use a Premium Azure Files share with Zone-Redundant Storage (ZRS) for the NFS file system, Premium SSD managed disks with ZRS for the database virtual machines, and Shared Access Signatures associated with a Stored Access Policy for diagnostic logs.
The correct options are selected because: Premium Azure Files is the only Azure Files tier that supports NFS , and ZRS provides resiliency against zone outages. Premium SSD disks with ZRS provide the required sub-millisecond latencies and zone-level redundancy for transactional database workloads. Finally, using a SAS token with a Stored Access Policy allows immediate revocation of access to the diagnostics logs.
Adım Adım Çözüm
Anahtar Kavram
Selecting Azure storage services, performance tiers, redundancy options, and access security mechanisms based on protocol, latency, availability, and management requirements.