Implement and manage storage in Azure Flashcards
What is Microsoft’s Cloud Storage solution?
Azure Storage
What types of objects can be stored in Azure storage?
Files, messages, tables, and other types of information.
What are the 3 data structures that Azure Storage supports?
Structured data, unstructured data, and virtual machine data.
Define ‘Virtual machine data’
Disks and files.
Describe how a VM uses a virtual disk
Persistent block storage for Azure IaaS virtual machines; Store data like database files, website static content, or custom application code.
Describe how Virtual machine data files are managed
Fully managed file shares in the cloud.
Describe the format of ‘Unstructured data’
The format of unstructured data is referred to as nonrelational.
What two Azure Storage services are used to store unstructured data?
Azure Blob Storage and Azure Data Lake Storage.
Describe ‘Structured data’
Stored in a relational format; Often contained in a database table with rows, columns, and keys.
What are the 3 Azure storage services that store structured data?
Azure Table Storage, Azure Cosmos DB, and Azure SQL Database.
Define ‘Azure Cosmos DB’
Globally distributed database service.
Define ‘Azure SQL Database’
Fully managed database-as-a-service built on SQL.
What are the two tiers of general purpose Azure Storage?
Standard and Premium.
Describe the standard tier of general purpose azure storage
Data is stored on HDDs; A standard storage account provides the lowest cost per GB.
Describe the premium tier azure storage
Data is stored on SSDs; Offers consistent low-latency performance.
How can resiliency be ensured with Azure storage?
Configuring data replication across datacenters or geographical regions for protection.
Does Azure storage encrypt all data?
Yes.
What are the four data services offered by Azure Storage?
- Azure Blob Storage (containers)
- Azure Files
- Azure Queue Storage
- Azure Table Storage
Describe the purpose of ‘Azure Blob Storage (containers)’
For storing large amounts of unstructured/nonrelational data.
What is blob storage ideal for?
Serving content to a web app; Storing data for backup/analysis; Videos/Text/Images/Installers.
How can Azure blob storage be accessed?
Via HTTP(s)/Azure Shell; Shared access signature (SAS); API; Shared key
Describe Azure Files and how it can be accessed
Enables highly available network file shares; Shares can be accessed via SMB and NFS protocol.
What is Azure Files ideal for?
Applications (containers) and their data; Storing config files accessed by VMs; Logs; Migrating data.