Section 9: AWS Fundamentals: RDS + Aurora + ElastiCache Flashcards

1
Q

What can you do with Aurora Custom Endpoints?

A

Define a subset of Aurora instances as a Custom endpoint
Could have a Analytical queries on specific replicas

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

What is ElastiCache?

A

ElastiCache is to get managed Redis or Memcached

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

What’s the difference between Redis and Memcached?

A

Redis
• Multi AZ - auto fail over
• Read Replicas - reads have high availability
• Data Durability using AOF persistence
• Back up and restore features

Memcached
• Multi-node for partitioning of data
• No high availability
• Non persistant
• no back up and restore
• multi threaded architecture

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

How can you authenticate Redis?

A
  • Can set a password/token when creating the Redis cluster (on top of security groups)
  • Supports SSL in flight encryption
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Does Elasticache support IAM authentication?

A

NO

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

What kind of security does Memcached support?

A

SASL-based auth

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

What are 3 patterns for ElastiCache?

A

Lazy Loading: All the read data is cached, data can become stale in cache.

Write through: Adds or update data in cache when written to DB (no stale)

Session store: Stores temporary session data in cache (TTL features)

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

What is Global Aurora and is that use case?

A

Aurora that spans multiple AWS regions. (Cross region read replicas)

Disaster recovery

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

List the characteristics of Aurora Global Database

A
  • 1 primary region (R/W)
  • 5 secondary regions - replication lag is < 1 sec
  • 16 read replicas per secondary region
  • helps decrease latency
  • promoting to another regions has an RTO of < 1 min
  • Cross region replication < 1 sec
How well did you know this?
1
Not at all
2
3
4
5
Perfectly