Implement and manage storage Flashcards
(36 cards)
What storage type would you store a VM Image on?
Blob Storage
What is the protocol port used for SMB?
Port 445
What dose SMB stand for?
Server Message Block
What is SMB?
The Server Message Block (SMB) protocol is a client-server communication protocol that is used for shared access to files on a network.
What is a blob data protection?
Data protection is another way to manage data in Azure Blobs. Using things like
- blob versioning
- blob soft deletes
- backups
- restore points
What is Access Keys?
A secure way to give someone access to your storage account instead of using an account
What are three points to remember about Access Keys?
Access keys are mainly used in Azure Storage Explorer.
You get two access keys per storage account
It will limits access to just one storage account
What dose SAS stand for?
Shared access signatures
What is SAS?
SAS is similar to access keys but allows you to customize your access.
What are features you can configure using SAS?
RW/RO
Expire time
Allowed IP addresses
Protocols (HTTP or HTTPS)
How dose SAS access work?
The SAS token will generate a URL and token for access (this will use of the access keys for this). This help limit access to your files rather than using URLs with no permissions.
What is General Purpose v2?
This is the generally available default option used for any new storage accounts. It offers all data services with all options for replication and access tiers where available.
What is General Purpose v1?
It provides all the data services like General Purpose v2 but does not have all the replication options or access tiers.
What is premium block blob?
Premium storage account type for block blobs and append blobs. Recommended for scenarios with high transaction rates or that use smaller objects or require consistently low storage latency.
What is premium file shares?
Premium storage account type for file shares only. Recommended for enterprise or high-performance scale applications.
What is premium page blobs?
Premium storage account type for page blobs only.
What is Azure Blobs?
Blobs are unstructured data such as image, text or binary data files
What are the three types of Azure Blobs?
Block Blobs
Page Blobs
Append Blob
What is Block Blobs?
Block Blobs are the default blob type used for file storage, great for static content, for example, image or text files. That are not likely to be updated frequently.
What is Page Blobs?
Page Blobs are used for unmanaged VM disks. Page blobs were designed for storing disks images either as a template or active disk.
What is Append Blob?
Append Blob are optimised for logging, this type of blob storage allows for additional information to be added to the blobs when additional information is appended to the files.
What is Azure Files?
Azure Files allow you to setup SMB (Server Message Block) within your Azure subscription, this allows multiple VMs to access to the files at the same time.
What is Azure Queue Service?
The Azure queues service is used for storing queue messages, which are up to 64KB in size. These are stored in the queue to be proceed one at a time. They are commonly used for PaaS (Platform-as-a-Service) that required message queues for processing data, like for websites or hosted applications.
What are Tables used for?
Tables are used to store structed data in a NoSQL database. This is ideal for storing large amounts of data the you need access to quickly.