Storage Flashcards

1
Q

What are the 3 main storage types?

A

Block (Azure Disks) - A hard disk attached to a VM. One disk can attach to one machine but one machine can attach to multiple disks
File (Azure Files) - Can attach or be shared to multiple machines
Object (Azure Blobs) - You want to upload and download objects without mounting them to your VM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are two additional services within Azure Storage/

A

Azure Queues - Decouple applications using messages
Azure Tables - a NoSQL store (very basic functionality, recommended to ise Azure Cosmos DB)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you achieve data durability?

A

Replicate the data across multiple locations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is local redundant storage?

A

There will be three synchronous copies in the same data center - least expensive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is zone redundant storage?

A

Three synchonrous in three AZs in the primary region

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is geo-redundant storage

A

LRS + Asynchronous copies to secondary region (three more copies using LRS)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is Geo-zone-redundant storage

A

ZRS + Asynchronous copy to secondary region (three more copies using LRS)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are region pairs?

A

Data copies across regions. Each primary region will have a secondary region paired with it E.g. East US and West US. They have a very fast data connection - they won’t be more than 300 km from one another.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the four disk storage types and corresponding use cases?

A

Standard HDD - For back, non-critical data or infrequent access
Standard SSD - Recommended for Web servers, lightly used enterprise apps and dev/test environments
Premium SSD - Recommended for production and performance sensitive workloads
Ultra disks - Recommended for input/output intensive workloads E.g. SAP HANA, top tiier databases like SQL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are managed and unmanaged disks?

A

Managed disks are where Azure handles the storage and availability (i.e. managed by them). Unmanaged is where you need to manage storage and the storage account.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are good use cases for using Azure Files?

A

Media workflows - multiple people needing to access and edit video and audio files.
Enterprise file sharing.
Typically used to access to files from multiple VMs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is Azure File Sync?

A

This service/storage option shares and stores data in Azure files and retains the flexibility and compatibility of Windows server files - and On-premise solution for customers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is blob storage and what are the 3 types?

A

You can store large volumes of unstructured data - all file types.
Block blobs - Store text or binary files e.g. video or archives
Append blobs - Store log files (e.g. with more actions, the data will need to be updated)
Page blobs - Good to use as a boot disk, foundation for Azure Iaas disks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is Azure Data Lake Storage Gen2?

A

If your data is stored in blob storage then you can perform big data analytics on them using this service

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the 3 access tiers?

A

Hot: Store frequently accessed data
Cool: Store infrequently accessed data for a min of 30 days
Archive: Rarely access data stored for min. 180 days. (Lowest storage cost but highest access cost). The access latency is hours and you need to “rehydrate” data coming out of Archive storage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly