📖 What is Azure Storage Account?
Azure Storage Account is a container that groups several different data storage services together, providing a unique namespace for your Azure Storage data. It allows you to manage access and settings for blobs, files, queues, and tables in one place.
"The Storage Account is the top-level entity; you cannot create a blob or a file share without first creating the account."
📚 Certification: Microsoft Azure Fundamentals (AZ-900)
🔑 What are the Key Concepts of Azure Storage Account?
- ▸ Supports four main data services: Blobs for unstructured data, Files for cloud file shares, Queues for asynchronous messaging, and Tables for NoSQL data.
- ▸ Offers various replication options including LRS for local redundancy, ZRS for zone redundancy, and GRS for regional disaster recovery across distant geographies.
- ▸ Provides performance tiers, with Standard using magnetic disks for general purposes and Premium using SSDs for low-latency, high-throughput requirements.
- ▸ Implements access tiers like Hot, Cool, Cold, and Archive to help users optimize costs based on how frequently data is accessed.
- ▸ Ensures security through multiple methods, including account access keys, Shared Access Signatures (SAS) for granular permissions, and Azure Active Directory integration.
🎯 How does Azure Storage Account appear on the AZ-900 Exam?
You may be asked to identify the most cost-effective storage tier for data that is rarely accessed but must be kept for several years for legal compliance, requiring you to distinguish between Cool and Archive tiers.
A scenario might describe a requirement for high availability and disaster recovery across two different geographic regions, prompting you to select Geo-redundant storage (GRS) over local redundancy options.
Expect questions where you must choose the correct storage service for a specific use case, such as selecting Azure Files for a shared network folder accessible via the SMB protocol.
❓ Frequently Asked Questions
What is the primary difference between LRS and GRS?
LRS replicates your data three times within a single physical location, protecting against disk failure. GRS replicates your data to a secondary region hundreds of miles away, protecting against a total regional outage.
When should I choose Premium performance over Standard?
Choose Premium when your application requires very low latency and high IOPS, such as for database logs or high-performance computing. Standard is sufficient for most general-purpose storage needs.
Can I move data between access tiers after it is uploaded?
Yes, you can change the access tier of a blob from Hot to Cool or Archive. This allows you to optimize costs as the data's access patterns change over time.