AZ-104: Implement and manage storage in Azure Flashcards
What are the three categories of data that Azure storage supports?
structured data, unstructured data, and virtual machine data
What are the four data services that can be accessed by using an Azure storage account?
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).
Give three examples of the types of storage Blob storage is ideal for
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.
Give two examples of the types of storage File storage is ideal for
on-premises applications
Configuration files
Diagnostic logs, metrics, and crash dumps
What is Queue storage for and what is the maximum storage size?
Azure Queue Storage is used to store and retrieve messages. Queue messages can be up to 64 KB in size.
What protocol does Azure Table Storage (Azure Cosmos DB) use to store data?
NoSQL
What are the four azure storage account types?
Standard general-purpose v2
Premium block blobs
Premium file shares
Premium page blobs
What are the four supported services for Standard General-Purpose v2?
Blob Storage (including Data Lake Storage)
Queue Storage
Table Storage
Azure Files
What are the four replication strategies available for azure storage?
Locally redundant storage (LRS)
Zone redundant storage (ZRS)
Geo-redundant storage (GRS)
Geo-zone-redundant storage (GZRS)
To what extent does a storage account name need to be unique?
The name must be globally unique
Which storage solution replicates data to a secondary region, maintains six copies of the data, and is the default replication option?
Read-access geo-redundant storage
What does BLOB stand for?
Blob stands for Binary Large Object
How many containers can an azure storage account have and how many blobs can be stored in each container?
Unlimited
What is the command to create a blob container with powershell?
New-AzStorageContainer
What are the three types of BLOBs? What is a short description of each?
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.