Mod 8 - Explore Azure Storage Operations Flashcards
what are the rules for SA endpoint names
- must be between 3 and 24 characters in length and
- may contain numbers and lowercase letters only.
- Your storage account name must be unique within Azure.
what are the storage account endpoints names
Blob Storage https://<storage-account-name>.blob.core.windows.net
Data Lake Storage Gen2 https://<storage-account-name>.dfs.core.windows.net
Azure Files https://<storage-account-name>.file.core.windows.net
Queue Storage https://<storage-account-name>.queue.core.windows.net
Table Storage https://<storage-account-name>.table.core.windows.net</storage-account-name></storage-account-name></storage-account-name></storage-account-name></storage-account-name>
what is Storage Account resource
an azure storage resource that enables storage of data in cloud.
provides a unique namespace for your Azure Storage data that’s accessible from anywhere in the world over HTTP or HTTPS
3 Basic Reqs needed to deploy SA:
- Resource Group
- Location
- Name
How to deploy SA
- Login to azure portal
- Search for storage account resource
- Go through prompts and set three basic settings
what are the 4 types of SA Types
- Standard general-purpose v2
- Premium block blobs
- Premium file shares
- Premium page blobs
what are the 4 types of SA services
Containers(Blob Service):
Queue Service:
File share(File service):
Table Service:
what is Containers(Blob Service)
: cloud storage for unstructured data such as text or binary data.Low cost to use
Premium page blobs Redundancy Options
LRS
Premium file shares Redundancy Options
LRS, ZRS
Premium block blobs Redundancy Options
LRS, ZRS
Standard general-purpose v2 Redundancy Options
LRS, GRS, RA-GRS, ZRS, GZRS, RA-GZRS
Blob
raw storage files that are located in containers. No permissions, no organization. Example, static website content like pictures on a website
how would you describe a Containers
Like a folder on windows OS
what is Queue Service
messaging store for consistent messaging between application components.
Smaller version of service bus. Can be coded into SDK
what does Queue Service use for send/receive
Uses API calls to send and receive messages between apps.
what is service bus
PaaS offering that acts as an enterprise grade queue for messages sent between microservices apps.
Apps subscribe to messages sent by another App.
what is service bus used for
Used for large scale apps with large amounts of message sent and stored
what is File share(File service):
organized file shares that maintain NTFS structure and permissions. Uses AD style authentication. Higher cost to use
what is Table Service
NoSQL store for schema-less storage of structured data. Rarely used, used for mobile apps, lightweight projects ex. Power Platform
HAAG
High availability, always on data stores
what does ETL stand for regarding data transfer
Method of data transfer where you extract data from data store, transform data into another format, load that compatible format into another data store.
- Example: Extract database data into csv file»Transform into Blob data type, Load blob into Azure Storage resource
how does Sw Developer role use SA
- Mainly use Blob storage and queue storage
- Store files uploaded by users to a web server or front end website or Dev process
how does Data engineer role use SA
- Mainly use Blob service and table service
how does System Admin: role use SA
- Mainly use File service
- Keep copy of corp data in cloud
what are the three Storage Access Tiers
Hot
Cool
Archive
what are the attributes of Hot tier
Changes frequently
Lowest latency
Used for Files
what are the attributes of Cool tier
Less frequently
Stored at least 30 days
Slower performance than Hot when accessing
Can incur a pro-rated penalty if you switch from Cold to Hot. Ex, 1 TB in cold for a week, get charged for 23 days
Used for Backups or Data waiting to be processed(ex. once a quarter data)
what are the attributes of Archive tier
Stored at least 180 days
Very affordable
Data offline
Used for Backups or Annual Backups for compliance reasons
Rehydration
process to pull data out of archive into cold tier after 180 days. Costs a lot of money