Storage Flashcards
3 storage account options are:
GPv1, GPv2, Blob
Three tiers for Blob storage
Hot, Cool, Archive
Maximum number of storage accounts per subscription
200
For most scenarios, Microsoft recommends: GPv2 or Blob?
GPv2
Two performance tiers for storage
Premium, Standard
Type of disk for Standard performance tier
Magnetic (HDD)
Type of disk for Premium performance tier
SSD
Can you switch between Standard and Premium performance tiers?
No
What is the only usage for the Premium performance tier?
Azure VMs
Is there any storage data that is not replicated?
No - data is always replicated at least three times
What are the four replication options for a storage account?
Locally Redundant Storage (LRS), Zone-Redundant Storage (ZRS), Geo-Redundant Storage (GRS), Read Access Geo-Redundant Storage (RA-GRS)
Which type of replication option cannot be altered to another type?
ZRS
How many times is LRS replicated, and where?
3 times within a single facility in a single region
How many times is ZRS replicated, and where?
3 times across two or three facilities, in either one or two regions
How many times is GRS replicated, and where?
3 times in primary region and 3 times in second region
What is difference between RA-GRS and GRS?
RA-GRS provides read access to your data in the second region
What is AzCopy?
Command-line utility to copy files to and from Blob, Table and File storage
What are common parameters of AzCopy?
/Source: /Dest: /SourceKey: /DestKey: /SourceSAS: /DestSAS: /Pattern:
For which type of container is AzCopy case-sensitive?
Blob
What replication scheme is the default?
RA-GRS
Aside from user credentials, what are the two options to manage storage resources in a different Azure subscription?
Account name and key, Shared access signature
Virtual machines have at least how many disks?
two - OS and temporary disks
On a Windows VM, the OS drive is registered as what type of disk and on what drive letter?
SATA and C:\
The temporary disk on a Windows VM is used for storing what (specifically) and under what drive letter by default?
pagefile.sys and d:\
What storage is used for Data disks on a VM?
They are persisted as a blob in an Azure Storage Acct
What determines the size of the temporary disk and the number of disks you can attach to a VM?
The size you choose for the VM
What is the max IOPS per storage account for standard storage?
50,000
What is the maximum number of disks per storage account for standard storage?
100
What is the maximum IOPS for premium storage for a storage account?
unlimited
What is the maximum number of disks per storage account for premium storage
unlimited
What is the total disk capacity and maximum number of disks at max capacity for a storage account with premium storage?
35 TB total, 35 disks
What is the max bandwidth for a storage account with premium storage?
50 Gbps
What is the total snapshot capacity for premium storage in a storage account?
10 TB
What is the difference between using a managed and unmanaged disk for a VM?
Disks that are unmanaged must explicitly define a separate storage account.
When using premium disk for a VM, do you have access to the underlying storage account?
No
True or false - you can upload a VHD file and attach it to an existing VM in Azure?
true
When detaching a managed disk from a VM, does it impact the underlying disk object?
No. It is the equivalent of unplugging the hard drive from the computer.
When converting an unmanaged disk to a managed disk for a VM, what is the potential issue with performing the process?
You must power off the VM
File storage uses what protocol?
SMB 3.0
What command would you use to map a file share on your Windows VM?
net use
The quota on a file share could also be referred to as what?
Size
If you have a mapped or mounted file share, what action will likely break the mount?
Rotating or changing the access key for the file share. The access key is the password used to connect.
To mount a file share in Linux, what must be true of your Linux machine?
It must be running in Azure in the same region as the file share.
What is the maximum size for a file share?
5 TB
What two series of VMs support premium storage?
DS and FS
True or false - the file share quota cannot be changed after creation
False - you can change the size (quota) of the file share
What drive type is used for new data disks for a VM?
SCSI
What are the three main types of blobs?
Block blobs, Append blobs, Page blobs
Which blob type is the best choice for a large number of IOT sensors / devices writing data to a blob, but not needing to read data from it?
Append blob
Which type of blob would be most useful as the persistence for a VHD?
Page blob