AZ-104: Implement and manage storage in Azure Flashcards

1
Q

What are the three categories of data that Azure storage supports?

A

structured data, unstructured data, and virtual machine data

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

What are the four data services that can be accessed by using an Azure storage account?

A

Azure Blob Storage (containers): A massively scalable object store for text and binary data.

Azure Files: Managed file shares for cloud or on-premises deployments.

Azure Queue Storage: A messaging store for reliable messaging between application components.

Azure Table Storage: A service that stores non-relational structured data (also known as structured NoSQL data).

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

Give three examples of the types of storage Blob storage is ideal for

A

Serving images or documents directly to a browser.
Storing files for distributed access.
Streaming video and audio.
Storing data for backup and restore, disaster recovery, and archiving.
Storing data for analysis by an on-premises or Azure-hosted service.

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

Give two examples of the types of storage File storage is ideal for

A

on-premises applications
Configuration files
Diagnostic logs, metrics, and crash dumps

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

What is Queue storage for and what is the maximum storage size?

A

Azure Queue Storage is used to store and retrieve messages. Queue messages can be up to 64 KB in size.

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

What protocol does Azure Table Storage (Azure Cosmos DB) use to store data?

A

NoSQL

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

What are the four azure storage account types?

A

Standard general-purpose v2
Premium block blobs
Premium file shares
Premium page blobs

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

What are the four supported services for Standard General-Purpose v2?

A

Blob Storage (including Data Lake Storage)
Queue Storage
Table Storage
Azure Files

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

What are the four replication strategies available for azure storage?

A

Locally redundant storage (LRS)
Zone redundant storage (ZRS)
Geo-redundant storage (GRS)
Geo-zone-redundant storage (GZRS)

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

To what extent does a storage account name need to be unique?

A

The name must be globally unique

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

Which storage solution replicates data to a secondary region, maintains six copies of the data, and is the default replication option?

A

Read-access geo-redundant storage

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

What does BLOB stand for?

A

Blob stands for Binary Large Object

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

How many containers can an azure storage account have and how many blobs can be stored in each container?

A

Unlimited

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

What is the command to create a blob container with powershell?

A

New-AzStorageContainer

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

What are the three types of BLOBs? What is a short description of each?

A

Block blobs. A block blob consists of blocks of data that are assembled to make a blob. Most Blob Storage scenarios use block blobs. Block blobs are ideal for storing text and binary data in the cloud, like files, images, and videos.

Append blobs. An append blob is similar to a block blob because the append blob also consists of blocks of data. The blocks of data in an append blob are optimized for append operations. Append blobs are useful for logging scenarios, where the amount of data can increase as the logging operation continues.

Page blobs. A page blob can be up to 8 TB in size. Page blobs are more efficient for frequent read/write operations. Azure Virtual Machines uses page blobs for operating system disks and data disks.

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

Name four authorization strategies for authorizing requests to azure storage

A

Azure Active Directory Azure AD is Microsoft’s cloud-based identity and access management service. With Azure AD, you can assign fine-grained access to users, groups, or applications by using role-based access control.

Shared Key Shared Key authorization relies on your Azure storage account access keys and other parameters to produce an encrypted signature string. The string is passed on the request in the Authorization header.

Shared access signatures A SAS delegates access to a particular resource in your Azure storage account with specified permissions and for a specified time interval.

Anonymous access to containers and blobs You can optionally make blob resources public at the container or blob level. A public container or blob is accessible to any user for anonymous read access. Read requests to public containers and blobs don’t require authorization.

17
Q

What does SAS stand for?

A

shared access signature

18
Q

What does URI stand for?

A

uniform resource identifier

19
Q

What are the two parts of the URI that is created when you create a SAS?

A

Azure Storage resource URI and the SAS token

20
Q

All data written to Azure Storage is encrypted through what standard?

A

AES 256-bit

21
Q

What protocol does Azure files use?

A

Server Message Block Protocol (SMB)

22
Q

What port is SMB

A

Port 445

23
Q

Which of the following statements correctly describes cloud tiering?

A. Cloud tiering prioritizes the sync order of file shares.

B. Cloud tiering sets the frequency at which the sync job runs.

C. Cloud tiering archives infrequently access files to free up space on the local file share

A

C. Cloud tiering archives infrequently access files to free up space on the local file share

24
Q

What permissions does Azure Storage Explorer require?

A

management (Azure Resource Manager), data layer permissions, and Azure Active Directory (Azure AD)

25
Q

What does AzCopy do after a failed transfer?

A

AzCopy automatically retries a transfer when a failure occurs

26
Q

What are the two ways AzCopy authenticates?

A

SAS and Azure AD

27
Q

What is the AzCopy command syntax in CLI?

A

azcopy copy [source] [destination] [flags]

28
Q

What are the available options for creating a storage account?

A

Azure Portal
Azure CLI (Command-line interface)
Azure PowerShell
Management client libraries

29
Q

What are the options for authenticating to BLOB storage?

A

Public access
Azure Active Directory (Azure AD)
Shared key
Shared access signature (SAS)

30
Q

What is public access also know as?

A

anonymous public read access for containers and blobs

31
Q

How many keys are automatically created per storage account?

A

Two 512 bit keys

32
Q

What can you use to manage shared keys?

A

Azure Key Vault

33
Q

What 3 types of SAS are supported by azure storage?

A

User delegation SAS
Service SAS
Account SAS:

34
Q

What is the most secure type of SAS

A

User Delegation

35
Q

This service offers an easy way of managing multiple storage accounts in multiple subscriptions

A

Azure Storage Explorer