Module 2c - Exploring Azure Core Products - Storage Flashcards

1
Q

What’s an Azure Storage Account?

Give two (2) important aspects about the account.

How can you create an account?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you access a file in Azure File Storage?

A

Use its public endpoint

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

How do you provide SECURE access to a file in Azure File Storage?

A

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

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

What is the Hot Access Tier?

A

High storage cost, lowest transaction cost. This is for data accessed FREQUENTLY

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

What is the Cold/Cool Access Tier?

What amount of time in storage qualifies data for Cold/Cool Tier?

A

Lower storage cost, higher data access cost. This is for data accessed INFREQUENTLY.

Stored for at least 30 days

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

What is the Archive Access Tier?

Where is it stored and for what minimum amount of time?

A

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

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

Which Access Tiers can be configured at the Account level? Which ones cannot?

A

Only Hot and Cool tiers can be configured at the Account level. Archive cannot

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

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

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

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

Archive storage has the lowest storage and rehydration/retrieval/access costs (T/F)?

A

False, it has the lowest storage cost (stored offline) but the highest retrieval and read access cost

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

What is Disk Storage?

A VM can have multiple disks (T/F)?

What are the two (2) types of drives?

A

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.

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

You can use Azure Disk Storage to store a VM disk outside its VM (T/F)

A

False

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

Annualized Failure Rate for delivering Enterprise-grade durability for IaaS disks is 99.99% SLA (T/F)?

A

FALSE….it’s actually 100% / ZERO% failure rate.

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

What are some example scenarios when you’d use:

  • SSD or HDD?
  • Premium SSD?
  • Ultra Disks?
A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is Azure Blob Storage ie what does “BLOB” mean?

A

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.

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

What’s an advantage Blob Storage has over Disk Storage?

A

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

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

Hint: five (5) items, ones a Use Case

What kind of data is Blob Storage ideal for?

A
  • Images or Docs
  • Constantly growing Log files
  • Files for distributed access
  • Streaming Media (Video or Audio)
  • Custom data formats
17
Q

All Access Tiers can be set at the Blob level (T/F)?

A

True

18
Q

Hint: U SU A

What are three features of Blob Storage?

A

Unstructured - meaning there are no restrictions on the kind of data it can hold

Simultaneous Uploading - can manage thousands of concurrent uploads at a time

Availability - vastly reachable from anywhere with an internet connection

19
Q

How much data can Blob storage hold for VMs?

A

Blob storage can hold up to 8TB of data for VMs

20
Q

Hint: B/R DR A A

What storage tasks is Blob storage suited for?

A

Storing data for

  • Backup/Restore
  • Disaster Recovery
  • Archiving
  • Analysis by on-prem or cloud services
21
Q

What are blobs stored in?

A

Blobs are stored in CONTAINERS; a structure that helps you organize blobs depending on business needs

22
Q

What is Azure Files (File Share)? What protocol does it use?

A

A fully managed file share in the cloud, accessible via SMB (Server Message Block)

  • Can be mounted on On-Prem Windows, Linux or MacOS
  • Can be mounted on Azure VMs or other cloud Servies
  • Any number of Azure VMs or roles can mount simultaneously
23
Q

What situations are Azure File Share ideal for?

A

Azure File Shares are CLOUD File Shares. We can mount an AFS and share it with multiple VMs, On-Prem machines, etc.

  • Migrating On-Prem shared data by mounting a File Share using the same Drive Letter as your On-Prem apps require
  • Store shared configuration files or as a general file share for multiple (and simultaneous) VM access
  • Writing data to File Share for later analysis
24
Q

Azure Files Share encrypts your data in transit via AES Encryption (T/F)?

Azure File Share does not encrypt your data at rest since Defense in Depth provides multiple layers of protection already (T/F)?

A

Both are FALSE

  • When in transit, the SMB protocol ensures data is encrypted
  • When the file is at rest, Azure File Share will ensure encryption of the data
25
Q

When creating an Azure CDN, the best choice of storage for CDN files is an Azure File Share (T/F)? Why?

A

False.

File Share is NOT compatible with Azure CDN since File Share uses SMB protocol, which doesn’t work on HTTP (port 80) or HTTPS (port 443)

Note - Best choice is Azure Blob Storage