Standard HDD Managed Disks

Standard HDD managed disks are the most cost-effective storage option, designed for workloads that require low transaction rates and don't have stringent performance requirements. They are ideal for dev/test environments, non-critical applications, and backup scenarios.

Key Features and Benefits

Performance Characteristics

Standard HDD disks offer the lowest IOPS (Input/Output Operations Per Second) and throughput compared to Standard SSD and Premium SSD disks. The performance varies based on the disk size.

Note: For workloads requiring higher IOPS or consistent performance, consider Standard SSD or Premium SSD managed disks.

Use Cases

Creating Standard HDD Disks

You can create Standard HDD managed disks using the Azure portal, Azure CLI, Azure PowerShell, or Azure Resource Manager templates.

Using Azure CLI

To create a Standard HDD managed disk using Azure CLI:

az disk create --resource-group <your-resource-group> --name <your-disk-name> --size-gb <size-in-gb> --sku Standard_LRS

Replace <your-resource-group>, <your-disk-name>, and <size-in-gb> with your specific values.

Using Azure PowerShell

To create a Standard HDD managed disk using Azure PowerShell:

New-AzDiskConfig -SkuName Standard_LRS -CreateOption Empty -DiskSizeGB <size-in-gb>
            New-AzDisk -ResourceGroupName <your-resource-group> -DiskName <your-disk-name> -DiskConfig $diskConfig

Replace <your-resource-group>, <your-disk-name>, and <size-in-gb> with your specific values.

Pricing

Standard HDD disks are priced based on the provisioned capacity and the number of I/O operations. Refer to the Azure Managed Disks pricing page for the most up-to-date information.

Tip: For cost optimization, use Standard HDDs for less critical workloads and consider reserved instances for long-term commitments.

Limitations