Storage tier optimization
📖 Scenario: You work for a company that stores large amounts of data in Azure Blob Storage. To save costs, you want to organize your blobs into different storage tiers based on how often they are accessed.Azure Blob Storage offers three main tiers: Hot (frequently accessed), Cool (infrequently accessed), and Archive (rarely accessed). Your task is to create a configuration that assigns blobs to the correct tier.
🎯 Goal: Create an Azure Storage account configuration that defines three containers named hot-container, cool-container, and archive-container. Then, set the access tier for each container accordingly to optimize storage costs.
📋 What You'll Learn
Create three containers named
hot-container, cool-container, and archive-containerSet the access tier of
hot-container to HotSet the access tier of
cool-container to CoolSet the access tier of
archive-container to Archive💡 Why This Matters
🌍 Real World
Many companies store large amounts of data in the cloud and want to reduce costs by using storage tiers that match how often data is accessed.
💼 Career
Cloud engineers and DevOps professionals often configure storage accounts and containers with appropriate tiers to optimize costs and performance.
Progress0 / 4 steps