Module 2 Core Azure Services Flashcards
Enumerate Azure Common Storage Services
- Azure Blob Storage
- Azure Disk Storage
- Azure Files Storage
- Azure Blob Access Tiers
_________ provides disks for Azure virtual machines. Applications and other services can access and use these disks as needed, similar to how they would in on-premises scenarios. _________ allows data to be persistently stored and accessed from an attached virtual hard disk.
Disk Storage
_____________ is an object storage solution for the cloud. It can store massive amounts of data, such as text or binary data. ____________ is unstructured, meaning that there are no restrictions on the kinds of data it can hold. _________ can manage thousands of simultaneous uploads, massive amounts of video data, constantly growing log files, and can be reached from anywhere with an internet connection.
Azure Blob Storage
Advantage of Blob Storage over Disk Storage.
It does not require developers to think about or manage disks.
Data is uploaded as blobs, and Azure takes care of the physical storage needs.
Ideal use for Blob Storage
- 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
- Storing up to 8 TB of data for virtual machines
_________ offers fully managed file shares in the cloud that are accessible via the industry standard Server Message Block and Network File System (preview) protocols.
Azure Files
Used to allow access to a private asset for a specific amount of time when using Azure Files
Shared Access Signature (SAS) token
Enumerate Azure’s blob access tiers
- Hot Access Tier
- Cool Access Tier
- Archive Access Tier
Blob Access Tier that is optimized for storing data that is accessed frequently (i.e. images for your website)
Hot Access Tier
Blob Access Tier that is optimized for data that is infrequently accessed and stored for at least ___ ____ (i.e. invoices for your customers)
Cool Access Tier ; 30 Days
Blob Access Tier that is appropriate for data that is rarely accessed and stored for at least ________, with flexible latency requirements (i.e. long-term backups)
Archive Access Tier ; 180 Days
True or False: All Blob Access Tiers can be set at the account level.
False.
Only hot and cool access tiers can be set at the account level. The archive access tier isn’t available at the account level.
True or False: Hot, cool, and archive tiers can be set at the blob level, during upload or after upload.
True
Data in the _________ can tolerate slightly lower availability, but still requires high durability, retrieval latency, and throughput characteristics similar to hot data. For _______, a slightly lower availability service-level agreement (SLA) and higher access costs compared to hot data are acceptable trade-offs for lower storage costs. (Blob Access Tiers)
Cool Access Tier
__________ stores data offline and offers the lowest storage costs, but also the highest costs to rehydrate and access data. (Blob Access Tiers)
Archive Storage
Enumerate Azure Database Services
- Azure Cosmos DB
- Azure SQL Database
- Azure SQL Managed Instance
- Azure Database for MySQL
- Azure Database for PostgreSQL
- Azure Synapse Analytics
- Azure HDInsight
- Azure Databricks
- Azure Data Lake Analytics
___________ is a globally distributed, multi-model database service. _________ provides comprehensive service level agreements for throughput, latency, availability, and consistency guarantees.
Azure Cosmos DB.
True or False: Azure Cosmos DB supports schema-less data, which lets you build highly responsive and “Always On” applications to support constantly changing data.
True
___________ is flexible. At the lowest level, _________ stores data in atom-record-sequence (ARS) format. The data is then abstracted and projected as an API, which you specify when you’re creating your database. This level of flexibility means that as you migrate your company’s databases to _________, your developers can stick with the API that they’re the most comfortable with.
Azure Cosmos DB
API choices for Azure Cosmos DB
- SQL
- MongoDB
- Cassandra
- Tables
- Gremlin