Module 2c - Exploring Azure Core Products - Storage Flashcards
What’s an Azure Storage Account?
Give two (2) important aspects about the account.
How can you create an account?
The account where all your data objects are stored (ex. blobs, files, disks).
- All Storage Services (can) use this account to reference your data
- Data in the account is secure, highly available, durable and massively scalable.
You create the account via Portal, CLI or PowerShell
How do you access a file in Azure File Storage?
Use its public endpoint
How do you provide SECURE access to a file in Azure File Storage?
Shared Access Key (SAS) tokens.
If you want to provide private access to a file in the File Share, give that file a SAS token. Tokens can be used to restrict/give access to certain file types or accounts, OR allow access for a certain amount of time~
To use the token, append its value to a “sig” param in the request’s query string, or use it in Azure Storage Explorer
What is the Hot Access Tier?
High storage cost, lowest transaction cost. This is for data accessed FREQUENTLY
What is the Cold/Cool Access Tier?
What amount of time in storage qualifies data for Cold/Cool Tier?
Lower storage cost, higher data access cost. This is for data accessed INFREQUENTLY.
Stored for at least 30 days
What is the Archive Access Tier?
Where is it stored and for what minimum amount of time?
Lowest storage cost, highest data retrieval cost. Great when you just need to archive data, but retrieving it is costly and could take hours (the data is offline). Stored for at least 180 days
Which Access Tiers can be configured at the Account level? Which ones cannot?
Only Hot and Cool tiers can be configured at the Account level. Archive cannot
Cool Tier data can tolerate lower availability but still require high durability, with retrieval latency and throughput characteristics similar to hot data.
What’s the trade off here and why is it acceptable?
A slightly lower availability (ie lower SLA) + higher access costs are acceptable due to lower storage costs.
In other words, consider using Cold Tier for cheap storage to offset the cost of “Hot” access when the latter may cost less than actually storing it
Archive storage has the lowest storage and rehydration/retrieval/access costs (T/F)?
False, it has the lowest storage cost (stored offline) but the highest retrieval and read access cost
What is Disk Storage?
A VM can have multiple disks (T/F)?
What are the two (2) types of drives?
Disks for VMs
A VM can have multiple Disks (ex. one for OS, one or more for Data)
Can be Solid State (SSD) or Hard Disk (HDD) with various performance tiers.
You can use Azure Disk Storage to store a VM disk outside its VM (T/F)
False
Annualized Failure Rate for delivering Enterprise-grade durability for IaaS disks is 99.99% SLA (T/F)?
FALSE….it’s actually 100% / ZERO% failure rate.
What are some example scenarios when you’d use:
- SSD or HDD?
- Premium SSD?
- Ultra Disks?
- Standard SSD and HDD for less-critical workloads
- Premium SSD for mission-critical production apps
- Ultra Disks for data-intensive workloads, top-tier DBs or transaction-heavy workloads
What is Azure Blob Storage ie what does “BLOB” mean?
Binary Large Object Storage - An OBJECT storage solution for Cloud, which can store text or binary data. A file entity is referred to as a BLOB.
What’s an advantage Blob Storage has over Disk Storage?
It doesn’t require developers to consider or manage disks. Data is uploaded as BLOBS; Azure handles the physical storage needs
Disk Storage on the other hand must define its size prior and must define where the disk be mounted prior to usage