📖 What is Azure Blob Storage?
Azure Blob Storage is Microsoft’s massively scalable object storage service for unstructured data. It’s designed for storing various data types, including text, binary data, and media files. Blob Storage offers different access tiers (Hot, Cool, Archive) to optimize cost based on data access frequency.
"Familiarize yourself with the different Blob Storage access tiers and their cost implications. Understand the differences between Block Blobs, Append Blobs, and Page Blobs. Exam questions may ask you to select the appropriate storage tier based on a given scenario and data access patterns. Consider immutability policies."
📚 Certification: Microsoft Azure Fundamentals (AZ-900)
🔑 What are the Key Concepts of Azure Blob Storage?
- ▸ Blob Storage uses a hierarchical structure of containers, similar to a file system, but is fundamentally object storage, not file storage.
- ▸ Access tiers (Hot, Cool, Archive) directly impact storage costs and retrieval latency; choosing the right tier is crucial for cost optimization.
- ▸ Block Blobs are ideal for storing text or binary files, while Append Blobs are optimized for append operations like logging.
- ▸ Page Blobs are designed for frequent random read/write operations, commonly used for virtual machine disks (VHDs).
- ▸ Immutability policies can be applied to Blob Storage to prevent data modification or deletion for compliance and data protection.
🎯 How does Azure Blob Storage appear on the AZ-900 Exam?
You may be asked to identify the most cost-effective storage tier for infrequently accessed log files that need to be retained for auditing purposes.
A scenario might describe an application needing to store large video files with frequent downloads – determine the appropriate Blob type and access tier.
Expect questions about configuring lifecycle management policies to automatically transition data between access tiers based on age or access patterns.
❓ Frequently Asked Questions
When would I choose Archive access over Cool access?
Archive is the lowest cost tier, but has the highest retrieval latency and costs. Use it for data rarely accessed, like backups kept for long-term retention, where quick access isn't needed.
What are the differences between public and private container access?
Public containers allow anonymous access to blobs, while private containers require authentication. Carefully consider security implications when choosing container access levels.
Can I modify a blob once it's been written to the Archive tier?
No, directly modifying a blob in the Archive tier isn't possible. You must first rehydrate it to a Hot or Cool tier before making changes, incurring rehydration costs.