Mod 8 - Explore Azure Storage Operations Flashcards

1
Q

what are the rules for SA endpoint names

A
  1. must be between 3 and 24 characters in length and
  2. may contain numbers and lowercase letters only.
  3. Your storage account name must be unique within Azure.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what are the storage account endpoints names

A

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>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is Storage Account resource

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

3 Basic Reqs needed to deploy SA:

A
  • Resource Group
  • Location
  • Name
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to deploy SA

A
  1. Login to azure portal
  2. Search for storage account resource
  3. Go through prompts and set three basic settings
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what are the 4 types of SA Types

A
  1. Standard general-purpose v2
  2. Premium block blobs
  3. Premium file shares
  4. Premium page blobs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what are the 4 types of SA services

A

Containers(Blob Service):
Queue Service:
File share(File service):
Table Service:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is Containers(Blob Service)

A

: cloud storage for unstructured data such as text or binary data.Low cost to use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Premium page blobs Redundancy Options

A

LRS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Premium file shares Redundancy Options

A

LRS, ZRS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Premium block blobs Redundancy Options

A

LRS, ZRS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Standard general-purpose v2 Redundancy Options

A

LRS, GRS, RA-GRS, ZRS, GZRS, RA-GZRS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Blob

A

raw storage files that are located in containers. No permissions, no organization. Example, static website content like pictures on a website

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

how would you describe a Containers

A

Like a folder on windows OS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is Queue Service

A

messaging store for consistent messaging between application components.

Smaller version of service bus. Can be coded into SDK

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what does Queue Service use for send/receive

A

Uses API calls to send and receive messages between apps.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

what is service bus

A

PaaS offering that acts as an enterprise grade queue for messages sent between microservices apps.

Apps subscribe to messages sent by another App.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

what is service bus used for

A

Used for large scale apps with large amounts of message sent and stored

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

what is File share(File service):

A

organized file shares that maintain NTFS structure and permissions. Uses AD style authentication. Higher cost to use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

what is Table Service

A

NoSQL store for schema-less storage of structured data. Rarely used, used for mobile apps, lightweight projects ex. Power Platform

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

HAAG

A

High availability, always on data stores

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

what does ETL stand for regarding data transfer

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

how does Sw Developer role use SA

A
  • Mainly use Blob storage and queue storage
  • Store files uploaded by users to a web server or front end website or Dev process
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

how does Data engineer role use SA

A
  • Mainly use Blob service and table service
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
how does System Admin: role use SA
* Mainly use File service * Keep copy of corp data in cloud
26
what are the three Storage Access Tiers
Hot Cool Archive
27
what are the attributes of Hot tier
Changes frequently Lowest latency Used for Files
28
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)
29
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
30
Rehydration
process to pull data out of archive into cold tier after 180 days. Costs a lot of money
31
How to create a storage access resource with any tier
1. Go to azure portal 2. Open Storage Account resource page 3. Select a Data storage option 4. Click Create/Add button a. Set a name b. Set Access level(private, public) 5. Click Upload a. Set Access Tier(Hot, Cold, archive) Can edit Access Tier of selected file by selecting Change Tier
32
what are Redundancy Options
Option on the Storage Account resource to define how redundant data in the SA will be
33
Synchronous data replication(SDR)
When data is written to primary and replica stores simultaneously and data is synced. * Data write operation not complete until all stores have data written to it and they confirm. If operation fails on any one, operation rolled back.
34
Asynchronous data replication(SDR
When data is written to primary store first without ensuring data is synced to replicas
35
what are the 2 storage performance tiers
Standard Premium
36
what is the standard tier
Sets a general purpose v2 storage account and allows 6 SA Redundancy options LRS GRS RA-GRS ZRS GZRS RA-GZRS
37
recovery point objective (RPO)
The interval between the most recent writes to the primary region and the last write to the secondary region
38
what is RPO of azure storage
less than 15 mins
39
by default is data in secondary region available to read and write
no
40
what happens if failover is done to secondary region in case of primary region failure?
. After the failover has completed, the secondary region becomes the primary region, and you can again read and write data
41
Is data from primary region replicated synchronously
No, asynchronously. a failure that affects the primary region may result in data loss if the primary region can't be recovered
42
How many nines of durability does LRS, ZRS, GRS, and GZRS
LRS provides at least 11 nines of durability (99.999999999%) of objects over a given year ZRS offers durability for Azure Storage data objects of at least 12 nines (99.9999999999%) over a given year. GRS offers durability for Azure Storage data objects of at least 16 nines (99.99999999999999%) over a given year. GZRS is designed to provide at least 16 nines (99.99999999999999%) of durability of objects over a given year.
43
what is LRS SA option
* Locally redundant storage(LRS): LOW COST OPTION FOR HARDWARE FAILURES. o 1 datacenter, 3 copies of data on three separate server racks(3 copies total) o For non-critical scenarios o Uses Synchronous data replication
44
what is GRS SA option
* Geo-redundant storage(GRS): Intermediate option with failover capabilities in second region o 2 regions, 1 datacenter in each region, uses LRS in each datacenter(6 copies total) o For backup scenarios o Uses Asynchronous data replication between regions and Synchronous data replication in the datacenter
45
what is ZRS SA option
* Zone-redundant storage(ZRS): Intermediate option with protection from datacenter level failures o 3 zones, 3 datacenters total, 1 copy in each data center in 1 region(3 copies total) o For high availability scenarios o Uses Synchronous data replication
46
what is GZRS SA option
* Geo-zone-redundant storage(GZRS): High cost, Optimal data protection solution that includes the offerings of both GRS and ZRS o 2 regions, 3 datacenters spread across 3 zones in primary region, 1 datacenter in secondary region ZRS in the primary region(6 copies total) o For critical data scenarios o Uses Asynchronous data replication between regions and Synchronous data replication in the datacenter
47
what is premium performance tier
Enables low latency, high availability options only. Can’t choose all four SA services. Used for Hyperscaling and Used to deploy Azure data Lake Gen 2
48
what are the 3 SA options for preium tier
* Block blobs: blob storage for high transaction rates * File shares: high performance apps that need to scale * Page blobs: blob storage for random read and write operation
49
Azure data Lake Gen 2
Premium Blob storage account optimized for storing csv or parquet files. Utilized by Read data analytics tools such as Power BI
50
what is Azure Storage Explorer
Desktop app that allows you to view file shares in azure from your local computer. Can view storage accounts and file contained within ex. blobs, tables, queries
51
DFS (Distribution File System
tech that allows you to replicate data between file shares on different windows servers
52
Azure File Sync
Azure resource that manages DFS sync between on prem and azure storage accounts
53
how does Azure File Sync work
1. Deploy AZ File sync a. Create sync group which identifies the servers and VMs in azure to be synced 2. Install AZ FS agent on the on prem server running the file share 3. Confirm sync is active
54
Should we use Azure File Sync to migrate data from on prem to AZ?
* Probably not o Using Public internet o Cost money for egress and ingress ops
55
what is Azure Migrate tool
Migration tool and dashboard to move on prem data in bulk. Can do this for IaaS or PaaS, ex. Lift and Shift an on-prem virtual machine server to a Azure VM
56
what are 3 options for AZ migrate
o Servers o Databases o Web Apps
57
what is azure data box
azure migration option where Physical Box that you get sent by Azure, load data on box, send back to Azure and they will transfer that onto your Azure resources. Uses NAS protocols such as NFS or SMB to transfer the data
58
how do you setup data box
1. Select Import or export to/from azure 2. Select subscription 3. Select Resource Group 4. Select Source country/region 5. Select Destination AZ region
59
what is use case for data box
Used for File Shares with massive amounts of on-prem data
60
what are 3 options for data box
o Data Box: 100 TB, AES 256 bit encryption o Data Box Disk: 8 TB, 128 bit encryption o Data Box Heavy: 1 Petabyte
61
what are 5 benefits of azure storage
* Durable and highly available. * Secure. * Scalable. * Managed. * Accessible
62
Azure Files 5 benefits:
* Shared access: * Fully managed: * Scripting and tooling: * Resiliency: * Familiar programmability
63
what is the size limit for individual queue messages
64 KB
64
how many queue messages are contained in on a AZ SA
can contain as many messages as your storage account has room for (potentially millions
65
what is Disk storage, or Azure managed disks
block-level storage volumes managed by Azure for use with Azure VMs.
66
when Synchronizing blobs or files with AzCopy, is it one direction or bi-directional
one-direction synchronization. When you synchronize, you designated the source and destination, and AzCopy will copy files or blobs in that direction
67
AzCopy def and actions
is a command-line utility that you can use to copy blobs or files to or from your storage account Actions: upload files, download files, copy files between storage accounts, and even synchronize files
68
Azure Storage Explorer def
a standalone app that provides a graphical interface to manage files and blobs in your Azure Storage Account It works on Windows, macOS, and Linux operating systems and uses AzCopy on the backend to perform all of the file and blob management tasks
69
Azure File Sync def
a tool that lets you centralize your file shares in Azure Files and keep the flexibility, performance, and compatibility of a Windows file server Once you install Azure File Sync on your local Windows server, it will automatically stay bi-directionally synced with your files in Azure.
70
what is ISV acronym
independent software vendor
71
* Azure Migrate: Discovery and assessment
Discover and assess on-premises servers running on VMware, Hyper-V, and physical servers in preparation for migration to Azure.
72
* Azure Migrate: Server Migration
Migrate VMware VMs, Hyper-V VMs, physical servers, other virtualized servers, and public cloud VMs to Azure.
73
* Data Migration Assistant
. Data Migration Assistant is a stand-alone tool to assess SQL Servers. It helps pinpoint potential problems blocking migration. It identifies unsupported features, new features that can benefit you after migration, and the right path for database migration
74
* Azure Database Migration Service
Migrate on-premises databases to Azure VMs running SQL Server, Azure SQL Database, or SQL Managed Instances
75
* Web app migration assistant
Azure App Service Migration Assistant is a standalone tool to assess on-premises websites for migration to Azure App Service. Use Migration Assistant to migrate .NET and PHP web apps to Azure.
76
what are the 3 scenarios where Data Box can be used to export data from Azure
* Disaster recovery - when a copy of the data from Azure is restored to an on-premises network. In a typical disaster recovery scenario, a large amount of Azure data is exported to a Data Box. Microsoft then ships this Data Box, and the data is restored on your premises in a short time. * Security requirements - when you need to be able to export data out of Azure due to government or security requirements. * Migrate back to on-premises or to another cloud service provider