Azure Storage Flashcards
1
Q
What types of Storage do Azure Storage Services comprise?
A
- Container (Blob) Storage (unmanaged storage) / Azure Storage (GPv2)
- Disk Storage - for Virtual Hard Disks (VHDs) (managed storage)
- Azure File Storage
- Storage tiers
- considered as Infrastructure as a Service
2
Q
Describe Azure Storage?
A
- also called GPv2
- “standard storage”
- can contain four types of data: Container, File, Queue, Table
- can hold up to 5 Petabytes (PB)
- pay for what you use
- extremely cheap cloud storage, about 2ct per GB per month
- not recommended for high-demand workloads
3
Q
How are Azure Storage and Data Lake connected?
A
- when setting up Azure Storage (GPv2) you can choose to turn it into data lake
- data lake is extremely large data storage
- good for “big data” analytics
4
Q
Describe Premium Storage Options
A
- Blob storage - can only hold containers (blobs) - can choose block blobs or page blogs
- File storage
- Uses premium SSD (solid state disks)
- Triple the operations per second (OPS)
- lower latency (time to first byte)
- more expensive
5
Q
What high performance options exist for storage?
A
- Premium SSD
- Premium SSD v2
- Ultra Disk
6
Q
What is a blob?
A
- Binary Large Object (BLOB)
- files of any type (txt, pdf, zip, jpg, …)
- stored loosely in a container
- public or private
- “unstructured data”
7
Q
Describe Container Storage
A
- create multiple containers
- each container can contain multiple blobs
- can be organized into folders
- BUT not hierarchical file structure
- pay only what you use
- equal to AWS Simple Storage Service (S3)
8
Q
How is Location important with Storage?
A
- can create multiple storage accounts in any region of the world
- keep data close to the person/service consuming it (for access speed reasons)
- price varies by region
9
Q
How does Azure deal with redundancy?
A
- Azure keeps 3 copies of your data by default
- Locally- or zone-redundant
- Azure will almost never, ever lose a file once it’s successfully received it
10
Q
What is global redundancy?
A
- chooseable for storage
- Azure keeps 6 copies of data
- 3 locally and 3 in another region of the “geo”
- Honors data sorvereignity laws
11
Q
What Access Tiers exist in Azure?
A
- Hot: default, balanced access
- Cool: can be set as default, cheaper storage with more expensive read/write operations
- Cold: much cheaper storage, more expensive read/write operations
- Archive: cannot get inmediate access to files, cheapest storage, most expensive operations
12
Q
What do Access Tiers of Storage describe?
A
- the balance between of if its cheaper to storage data than to retrieve it or the other way around
13
Q
What is the concept of Failover in Azure?
A
- Hard disk fail ever so often
- Azure takes of that
- 3 copies of your data, they can use one of other copies to recreate it
14
Q
What is Lifecycle management in Azure Storage?
A
- allows to automate pushing files from hot to cool and from cool to archive based on certain rules
15
Q
What applications can be used to access a storage account directly/programmaticly?
A
- Storage Explorer (downloadable Software)
- Storage Browser (in the browser)