EC2 - RAID, Volumes & Snapshots Flashcards

1
Q

What does RAID stand for?

A

Redundant Array of Independent Disks (putting together a bunch of disks as one disk)

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

RAID types

A

RAID 0, RAID 1, RAID 5, RAID 10

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

RAID 0

A

Striped, No Redundancy (if one disk fails, the entire volume fails), Good Performance (use: gaming)

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

RAID 1

A

Mirrored (take one disk, mirror a copy to another disk), Redundancy

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

RAID 5

A

at least 3 disks, good for reads, bad for writes, AWS does not recommend ever putting RAID 5’s on EBS

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

RAID 10

A

Striped & Mirrored, good redundancy, good performance

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

Where are RAID volumes used on AWS?

A

If you do not get disk I/O you require, add multiple volumes and create RAID array (usually RAID 0 or RAID 10 on AWS)

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

Best practice when launching Windows instances

A

Create a new keypair for Windows instances, separate from Linux instances

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

Username, password for Windows instances

A
User = Administrator
Password = upload private key file into "Retrieve Password" window to obtain password
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

To manage disks…

A

Right-click, Disk Management. Right-click on an unallocated volume and choose volume type you want to create, select drive you want the RAID volume assigned to

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

How can I take a Snapshot of a RAID array - background?

A

Problem - Take a snapshot, the snapshot excludes data held in the cache by apps and the OS. This tends not to matter on a single volume; however, using multiple volumes in a RAID array, this can be a problem due to interdependencies of the array.

Solution - Take an application consistent snapshot

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

How can I take a Snapshot of a RAID array - continued

A

Stop the application from writing to disk. Flush all caches to the disk.

How can we do this? Freeze the file system, unmount the RAID array, shut down the associated EC2 instance (easiest)

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