0
0
Azurecloud~10 mins

Storage tier optimization in Azure - Step-by-Step Execution

Choose your learning style9 modes available
Process Flow - Storage tier optimization
Data arrives in Storage Account
Check data access frequency
Hot tier
Fast access
Monitor usage and move data between tiers
Optimize cost and performance
Data is stored in different tiers based on how often it is accessed, balancing cost and speed.
Execution Sample
Azure
Set blob tier to Hot
Access blob frequently
Change tier to Cool if access drops
Archive blob if rarely accessed
This sequence shows how data moves between storage tiers based on access frequency.
Process Table
StepData Access FrequencyActionStorage TierCost Impact
1HighSet tier to HotHotHigher cost, fast access
2HighAccess blobHotCost remains higher
3LowChange tier to CoolCoolLower cost, slower access
4Very LowArchive blobArchiveLowest cost, slowest access
5Access increasesMove blob to HotHotCost increases, fast access
6Access dropsMove blob to CoolCoolCost decreases
7Access stopsMove blob to ArchiveArchiveCost minimized
💡 Data tier changes stop when access frequency stabilizes or data is deleted.
Status Tracker
VariableStartAfter Step 1After Step 3After Step 4After Step 5After Step 7
Storage TierNoneHotCoolArchiveHotArchive
Cost LevelNoneHighMediumLowHighLowest
Access FrequencyUnknownHighLowVery LowHighStopped
Key Moments - 3 Insights
Why do we move data from Hot to Cool tier?
Because access frequency drops (see step 3 in execution_table), moving data to Cool tier reduces cost while accepting slower access.
What happens if data access increases after archiving?
Data is moved back to Hot tier for faster access and higher cost (see step 5 in execution_table).
Is Archive tier suitable for frequently accessed data?
No, Archive tier is for rarely accessed data due to slow retrieval times and is lowest cost (see step 4).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the storage tier after step 3?
AHot
BCool
CArchive
DNone
💡 Hint
Check the 'Storage Tier' column at step 3 in execution_table.
At which step does the cost become lowest?
AStep 5
BStep 2
CStep 4
DStep 1
💡 Hint
Look at the 'Cost Impact' column in execution_table for the lowest cost.
If data access frequency never drops, which tier will data remain in?
AHot
BCool
CArchive
DNone
💡 Hint
Refer to variable_tracker and execution_table steps where access frequency is high.
Concept Snapshot
Storage tier optimization:
- Hot tier: frequent access, higher cost
- Cool tier: infrequent access, lower cost
- Archive tier: rare access, lowest cost
- Move data between tiers based on usage
- Balances cost and performance
Full Transcript
Storage tier optimization in Azure means placing data in different storage tiers depending on how often it is accessed. Data accessed frequently is stored in the Hot tier for fast access but higher cost. When access drops, data moves to the Cool tier to save cost with slower access. If data is rarely accessed, it moves to the Archive tier, which is the cheapest but slowest to retrieve. This process helps balance cost and performance by monitoring data usage and adjusting storage tiers accordingly.