Azure Docs

Azure Blob Storage: Hot Tier

The hot access tier is optimized for data that is accessed frequently. This tier offers the lowest access costs and the highest retrieval costs, making it ideal for scenarios where data needs to be readily available.

When to Use the Hot Tier

Key Characteristics

Comparing Tiers: Hot vs. Cool vs. Archive

Understanding the differences between storage tiers is crucial for optimizing costs and performance:

You can change the access tier of existing blobs to optimize costs based on usage patterns.

Configuring the Hot Tier

When creating a new storage account or configuring existing blobs, you can select the hot tier. For new blob containers, the default tier is typically hot.

Managing Blob Access Tiers

You can manage access tiers using various Azure tools:

Important Consideration: While the hot tier offers the best performance for frequently accessed data, its higher retrieval costs mean it's not the most economical choice for data that sits idle for extended periods.

Regularly review your blob access patterns to ensure you are using the most cost-effective tier.

Example Usage (Azure CLI)

To set a blob to the hot tier:


az storage blob set-tier --account-name <your-storage-account-name> --container-name <your-container-name> --name <your-blob-name> --tier Hot

        

To set a blob to the cool tier:


az storage blob set-tier --account-name <your-storage-account-name> --container-name <your-container-name> --name <your-blob-name> --tier Cool

        
Explore More Blob Storage Features