Azure Smart Tier’s General Availability for Automatic Storage Cost Optimization
Microsoft Azure released Azure Smart Tier for Azure Blob Storage and Data Lake Storage as a generally available (GA) feature in April 2026. This feature enables automatic tiering, which can reduce storage costs by up to 50% without manual configuration.
Smart Tier’s Mechanism and Automatic Tiering Logic
Smart Tier continuously monitors Azure Storage’s access patterns and automatically moves data between three tiers: Hot, Cool, and Cold. The default behavior is as follows:
- New data is stored in the Hot tier
- Data not accessed for 30 days is moved to the Cool tier
- Data not accessed for 90 days is moved to the Cold tier
- Data that is accessed is automatically moved back to the Hot tier, restarting the tiering cycle
This automation eliminates the need for manual lifecycle management rules. According to Microsoft’s Azure Data Explorer team, “Smart Tier eliminates guesswork and allows us to focus on providing insights rather than managing data placement.” (Source: azure.microsoft.com)
Implementation Steps and Pricing
To enable Smart Tier, register the “Smart Tier (account level)” preview feature in the Azure Portal’s preview features blade.
# Azure CLI example to enable Smart Tier
az feature register --namespace Microsoft.Storage --name SmartTier
az provider register --namespace Microsoft.Storage
The pricing is as follows:
- Monitoring operations: $0.04 USD per 10,000 operations
- Conforms to the existing storage tier pricing (Hot, Cool, and Cold tier prices)
Currently, only account-level tiering for Zone Redundant Storage (ZRS, GZRS, RA-GZRS) is supported, and conversion to non-zone redundant (LRS, GRS) is not available. (Source: learn.microsoft.com)
Performance Characteristics and Actual Effects
Over 50% of the capacity under Smart Tier management has been automatically transitioned to the Cool tier based on actual access patterns. This automatic optimization can significantly reduce storage costs for infrequently accessed data.
The characteristics of each tier are as follows:
- Hot tier: For frequently accessed data, with high storage costs and low access costs
- Cool tier: For infrequently accessed data stored for over 30 days, with low storage costs and high access costs
- Cold tier: For rarely accessed data stored for over 90 days, with the lowest storage costs
The performance characteristics and SLA for data access conform to the specifications of the underlying capacity tier. (Source: learn.microsoft.com)
Summary
- Enabling Smart Tier can reduce Azure Blob Storage costs by up to 50% without manual lifecycle management
- Registering the preview feature in the Azure Portal and paying a monitoring fee of $0.04 per 10,000 operations can enable access pattern-based automatic tiering
- Enabling Smart Tier on existing storage accounts can automatically optimize all blobs without explicit tier settings, reducing operational burdens
- Introducing Smart Tier in services like Azure Data Explorer, which handle large amounts of data, can optimize storage costs while maintaining query performance