Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Database - Specialty All Questions

View all questions & answers for the AWS Certified Database - Specialty exam

Exam AWS Certified Database - Specialty topic 1 question 44 discussion

Exam question from Amazon's AWS Certified Database - Specialty
Question #: 44
Topic #: 1
[All AWS Certified Database - Specialty Questions]

A gaming company has implemented a leaderboard in AWS using a Sorted Set data structure within Amazon ElastiCache for Redis. The ElastiCache cluster has been deployed with cluster mode disabled and has a replication group deployed with two additional replicas. The company is planning for a worldwide gaming event and is anticipating a higher write load than what the current cluster can handle.
Which method should a Database Specialist use to scale the ElastiCache cluster ahead of the upcoming event?

  • A. Enable cluster mode on the existing ElastiCache cluster and configure separate shards for the Sorted Set across all nodes in the cluster.
  • B. Increase the size of the ElastiCache cluster nodes to a larger instance size.
  • C. Create an additional ElastiCache cluster and load-balance traffic between the two clusters.
  • D. Use the EXPIRE command and set a higher time to live (TTL) after each call to increment a given key.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️
Reference:
https://aws.amazon.com/blogs/database/work-with-cluster-mode-on-amazon-elasticache-for-redis/

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
novice_expert
Highly Voted 2 years, 4 months ago
Selected Answer: B
cannot enable Cluster Mode on an existing cluster, With cluster mode disabled it will allow only vertical scaling.
upvoted 5 times
...
rrshah83
Most Recent 9 months, 2 weeks ago
Selected Answer: A
Elasticache now supports enabling cluster mode on existing clusters. https://aws.amazon.com/about-aws/whats-new/2023/05/amazon-elasticache-redis-cluster-mode-configuration-existing-clusters/#:~:text=Amazon%20ElastiCache%20for%20Redis%20now%20supports%20enabling%20Cluster%20Mode%20configuration%20on%20existing%20clusters,-Posted%20On%3A%20May&text=You%20can%20now%20update%20your,data%2C%20or%20affect%20application%20availability.
upvoted 3 times
...
luckybme
10 months, 4 weeks ago
Selected Answer: A
Elasticache now supports enabling cluster mode on existing clusters. https://aws.amazon.com/about-aws/whats-new/2023/05/amazon-elasticache-redis-cluster-mode-configuration-existing-clusters/#:~:text=Amazon%20ElastiCache%20for%20Redis%20now%20supports%20enabling%20Cluster%20Mode%20configuration%20on%20existing%20clusters,-Posted%20On%3A%20May&text=You%20can%20now%20update%20your,data%2C%20or%20affect%20application%20availability.
upvoted 3 times
...
Pranava_GCP
1 year ago
Selected Answer: B
B. Increase the size of the ElastiCache cluster nodes to a larger instance size. https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.RedisReplGrps.html
upvoted 1 times
...
nehacool29
1 year, 2 months ago
Selected Answer: C
C is correct
upvoted 1 times
...
dnelub
1 year, 3 months ago
Option B (increasing the size of cluster nodes) can provide some level of scaling, but it may have limitations in terms of the maximum capacity it can handle. Additionally, simply increasing the node size may not fully address the anticipated higher write load during the gaming event. Option C: Creating an additional ElastiCache cluster and load-balancing traffic between the clusters allows for distributing the write load across multiple clusters, effectively scaling the capacity and handling increased demand. This approach provides horizontal scalability and helps mitigate the potential performance limitations of a single cluster. Why not C?
upvoted 1 times
...
rags1482
1 year, 11 months ago
B Redis (cluster mode disabled) supports scaling. You can scale read capacity by adding or deleting replica nodes, or you can scale capacity by scaling up to a larger node type.
upvoted 2 times
...
ryuhei
2 years, 2 months ago
Selected Answer: B
Answer:B
upvoted 1 times
...
RotterDam
2 years, 6 months ago
Selected Answer: B
B is correct. You cannot enable Cluster Mode on an existing cluster
upvoted 4 times
NishithShah
9 months, 1 week ago
Cluster mode configuration can only be changed from cluster mode disabled to cluster mode enabled. Reverting this configuration is not possible. https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/modify-cluster-mode.html
upvoted 1 times
...
...
mayank830
2 years, 7 months ago
https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Replication.Redis-RedisCluster.html Reads v. writes – If the primary load on your cluster is applications reading data, you can scale a Redis (cluster mode disabled) cluster by adding and deleting read replicas. However, there is a maximum of 5 read replicas. If the load on your cluster is write-heavy, you can benefit from the additional write endpoints of a Redis (cluster mode enabled) cluster with multiple shards.
upvoted 1 times
...
jeyp12
2 years, 7 months ago
I think answer is B. With cluster mode disabled it will allow only vertical scaling. So going with B
upvoted 2 times
...
2025flakyt
2 years, 9 months ago
A is the correct answer Enabling Cluster Mode provides a number of additional benefits in scaling your cluster. In short, it allows you to scale in or out the number of shards (horizontal scaling) versus scaling up or down the node type (vertical scaling). This means that Cluster Mode can scale to very large amounts of storage (potentially 100s of terabytes) across up to 90 shards, whereas a single node can only store as much data in memory as the instance type has capacity for. https://aws.amazon.com/blogs/database/work-with-cluster-mode-on-amazon-elasticache-for-redis/
upvoted 2 times
VPup
2 years, 7 months ago
you can not enable the cluster mode on the already running Elasticache cluster. Have to provision a new cluster with the Cluster mode enabled and restore the backed up data from S3.
upvoted 2 times
...
RotterDam
2 years, 6 months ago
Wrong. You cannot convert an EXISTING Cluster Mode Disabled cluster to Cluster Mode enabled. You need to create a new cluster with cluster mode enabled and warm cache it by loading it with the RDB file backup of the original
upvoted 2 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...