EC2 Instance Storage Flashcards

1
Q

What does EBS standfor?

A

Elastic Block Store

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

How many EC2 instances can an EBS volume be mounted to at one time?

A

One

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

Are EBS volumes global or availability zone bounded?

A

Availability zone

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

What attribute determines what will happen to an EBS volume attached to an EC2 instance once it is deleted?

A

Delete on termination attribute (default ON root, OFF other)

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

How can you make a backup of an EBS volume?

A

Use snapshots (they can be used to move EBS volumes between az’s/regions)

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

What feature can make storing EBS snapshots cheaper?

A

EBS Snapshot Archive

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

What happens if you accidently delete a snapshot?

A

Check the recycle bin for EBS snapshots

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

What is an AMI?

A

Amazon Machine Image are a customization of EC2 with preinstalled software and configuration

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

Are AMI’s build for global, specific regions, or specific az’s?

A

Specific regions

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

Is EBS a physical or network drive?

A

Network drive

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

Is EC2 Instance Store a physical or network drive?

A

Physical

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

Justify when you would pick an EBS volume over and EC2 instance store?

A
  1. Cheaper
  2. Can be configured to not be deleted when EC2 instance is deleted
  3. Can be disconnected and attached to other EC2 instances
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Justify when you would pick an EC2 instance store over an EBS volume?

A
  1. Need high performance (like for a short term cache)
  2. Don’t care that storage will be lost of EC2 instance is deleted
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe the gp2/gp3 EBS volume type

A

General purpose SSD volume with balanced price/performance

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

Describe the io1/io2 Block Express EBS volume type

A

High performance SSD volume for mission critical low latency high throughput workloads

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

Describe the st1 EBS volume type

A

Low cost HDD volume for frequently accessed throughput intensive workloads

17
Q

Describe the sc1 EBS volume

A

Lowest cost HDD volume for infrequent access workloads

18
Q

Which EBS volume types can be used for boot volumes (and which cant)?

A

Only gp2/gp3 and io1/io2 can be used. st1 and sc1 cannot be used

19
Q

What is the difference between gp2 and gp3?

A

gp3 allows you to increase IOPS and throughput independently whereas gp2 have IOPS and throughput linked

20
Q

What feature allows you to attach a volume to multiple EC2 instances in the same AZ and what family of storage is it applicable for? What is the maximum number of EC2 instances it can connect to?

A

EBS Multi-Attach is a feature the io1/io2 storage type and 16 is the maximum number of instances.

21
Q

What is Amazon EFS?

A

A managed network file system that can mounted on many EC2 instances across multiple availability zones

22
Q

What operating systems is EFS compatible with?

A

Linux

23
Q

What are the two different performance modes for EFS?

A
  1. General purpose - Latency sensitive
  2. Max I/O - Higher latency higher throughput
24
Q

What are the three different throughput modes for EFS

A
  1. Bursting - Throughput and storage linked
  2. Provisioned - Throughput and storage not linked
  3. Elastic - Automatically scales
25
Q

What are the three different storage tiers for EFS and what can you configure to move data between the storage tiers?

A

You can configure lifecycle policies to move files between the 3 following storage tiers:
1. Standard - Frequently accessed files
2. Infrequent access (EFS-IA)
3. Archive - Rarely accessed data

26
Q
A