📖 What is Azure Storage?
Azure Storage provides scalable and durable cloud storage for various data types. It offers Blob storage for unstructured data, File storage for shared file systems, Queue storage for message queuing, and Table storage for NoSQL key-value pairs, each optimized for specific use cases and access patterns.
"Focus on access tiers (Hot, Cool, Archive) within Blob storage and their cost implications. Understand when to use each storage type based on data access frequency and retention needs. The exam frequently tests your ability to choose the most cost-effective storage solution."
📚 Certification: Microsoft Azure Fundamentals (AZ-900)
🔑 What are the Key Concepts of Azure Storage?
- ▸ Blob storage is ideal for unstructured data like images, videos, and documents, offering different access tiers (Hot, Cool, Archive) based on frequency of access.
- ▸ File storage provides fully managed file shares accessible via SMB protocol, suitable for applications requiring traditional file systems in the cloud.
- ▸ Queue storage enables asynchronous messaging between application components, improving scalability and resilience by decoupling services.
- ▸ Table storage is a NoSQL key-value store for structured, non-relational data, offering high scalability and cost-effectiveness for large datasets.
- ▸ Understanding storage redundancy options (LRS, ZRS, GRS, RA-GRS) is crucial for data durability and availability based on business requirements.
🎯 How does Azure Storage appear on the AZ-900 Exam?
You may be asked to identify the most cost-effective Azure Storage option for archiving infrequently accessed log files, considering access tiers and replication strategies.
A scenario might describe an application needing to store large video files with frequent downloads – determine the appropriate Blob storage access tier and redundancy level.
Expect questions about choosing the correct storage service when a company needs a shared file system accessible by multiple virtual machines running Windows.
❓ Frequently Asked Questions
When would I choose Cool or Archive Blob storage over Hot?
Cool and Archive tiers are significantly cheaper but have higher access costs and latency. Use them for data rarely accessed, like backups or long-term archives, not frequently used files.
What's the difference between LRS and GRS for data protection?
LRS (Locally Redundant Storage) replicates data within a single datacenter. GRS (Geo-Redundant Storage) replicates data to a secondary region, providing protection against regional outages.
Can I change the access tier of a Blob after it's been created?
Yes, you can change the access tier of a Blob at any time. However, be aware of the transaction costs associated with tier changes and the potential for increased access costs if you move to a higher tier.