Transition blobs to a cooler storage tier (Hot to Cool, Hot to Archive, Cool to Archive) to optimize for performance and cost. How it will improve performance when there will be latency?

Ankeet Mahto 0 Reputation points
2024-06-24T00:47:40.9533333+00:00

Transition blobs to a cooler storage tier (Hot to Cool, Hot to Archive, Cool to Archive) to optimize for performance and cost. How it will improve performance when there will be latency?

Correct me if I am wrong.

Link of the Microsoft learn content : https://video2.skills-academy.com/en-us/training/modules/configure-blob-storage/5-add-blob-lifecycle-management-rules

This question is related to the following Learning Module

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,576 questions
Azure Training
Azure Training
Azure: A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.Training: Instruction to develop new skills.
1,231 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anand Prakash Yadav 7,775 Reputation points Microsoft Vendor
    2024-06-24T09:50:27.9633333+00:00

    Hello Ankeet Mahto,

    Thank you for posting your query here!

    Transitioning blobs to different storage tiers in Azure Blob Storage, such as from Hot to Cool, Hot to Archive, or Cool to Archive, primarily optimizes costs rather than improving performance. Each storage tier is designed with a different use case in mind, balancing cost and access frequency:

    • Hot Tier: Optimized for data that is accessed frequently. This tier offers the lowest access latency and highest performance, but at a higher cost. Store the latest log files here, as they are frequently accessed for monitoring and debugging.
    • Cool Tier: Intended for data that is infrequently accessed and stored for at least 30 days. It has lower storage costs compared to the Hot tier but higher access costs and slightly higher latency. Move log files older than one month to the Cool tier, as they are accessed less frequently but still might be needed occasionally.
    • Archive Tier: Meant for data that is rarely accessed and stored for at least 180 days. It offers the lowest storage costs but comes with the highest access costs and significant retrieval latency, as data needs to be rehydrated before it can be accessed. Transition log files older than six months to the Archive tier, as they are rarely accessed but must be retained for compliance.

    Cost Savings: By moving infrequently accessed data to the Cool or Archive tiers, you can significantly reduce your storage costs.

    Performance Optimization: Keeping frequently accessed data in the Hot tier ensures that performance-sensitive operations run smoothly without latency issues. Transitioning older or less critical data to cooler tiers ensures that your high-performance storage is not cluttered with data that doesn’t need to be accessed quickly.

    Do let us know if you have any further queries. I’m happy to assist you further.

    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.