Resilient architecture Flashcards

1
Q

4 design pillars

A
  1. resilient storage
  2. decoupling mechanisms
  3. Multi-tier architecture solution
  4. Design highly available/fault tolerant systems
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

EC2 Instance store is …

A

ephemeral volume

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

EC2 instance store should use for …

A

caching/temporary data which is replicated somewhere else

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

Elastic Block Store connects to …

A

one EC2 instance at a time.

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

EBS supports two things

A
  1. Encryption

2. Snapshots

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

EBS and EC2 lifecycle is …

A

independent

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

EBS has 4 types

A
  1. gp2 - general SSD
  2. IOPS SSD
  3. st1 - throughput optimezed HDD
  4. sc1 - cold HDD
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

SSD is good for

A

random access

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

HDD is good for

A

sequential access

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

Amazon EFS is

A

File storage in the cloud

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

Amazon EFS can be connected to …

A

multiple EC2 instance.

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

Amazon EFS is compatible with

A

linux based AMIs for EC2 but not for Windows.

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

Amazon EFS connects through

A

mount points

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

Amazon EFS can connect to …

A

a single VPC at a time.

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

Amazon S3 consistency model

A

Strong consistency for no object response.

Eventual cons. for updates.

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

RTO

A

Recovery Time Objective - how long does it take to recover

17
Q

RPO

A

Recovery Point Objective - how much data is lost, could be measured in bytes or in time.

18
Q

4 test axioms for resilience

A
  1. “Single AZ” is never the good answer.
  2. Managed service is always preferred.
  3. High availability < Fault tolerant = errors are concealed and there is no loss of service
  4. Expect everything will fail at some point and plan accordingly.