exam questions

Exam AWS Certified SysOps Administrator - Associate All Questions

View all questions & answers for the AWS Certified SysOps Administrator - Associate exam

Exam AWS Certified SysOps Administrator - Associate topic 1 question 189 discussion

An ecommerce company has built a web application that uses an Amazon Aurora DB cluster. The DB cluster includes memory optimized instance types with both a writer node and a reader node. Traffic volume changes throughout the day. During sudden traffic surges, Amazon CloudWatch metrics for the DB cluster indicate high RAM consumption and an increase in select latency.

A SysOps administrator must implement a configuration change to improve the performance of the DB cluster. The change must minimize downtime and must not result in the loss of data.

Which change will meet these requirements?

  • A. Add an Aurora Replica to the DB cluster.
  • B. Modify the DB cluster to convert the DB cluster into a multi-master DB cluster.
  • C. Take a snapshot of the DB cluster. From that snapshot, create a new DB cluster that has larger memory optimized instances.
  • D. Increase the disk storage capacity of the DB cluster to double the existing disk capacity.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
jipark
Highly Voted 1 year, 8 months ago
Selected Answer: A
I'll give a tip : read latency : read replica write latency : multi-master
upvoted 12 times
...
Mila28
Highly Voted 2 years, 4 months ago
Selected Answer: A
The key word is "dowtime", so I vote for A. B is out because this changes needs a dowtime for business
upvoted 8 times
...
auxwww
Most Recent 10 months ago
Selected Answer: A
'Select' latency - read-only workload causing high memory consumption and latency. Therefore Read replica - A
upvoted 1 times
...
nyalpellymkar07
11 months ago
Selected Answer: A
Keyword is select latency, which means read operations. So adding Read Replica will reduce Read Latency and also RAM consumption, load on the Primary.
upvoted 1 times
...
stoy123
1 year, 2 months ago
Selected Answer: A
ans. A
upvoted 2 times
...
r2c3po
1 year, 4 months ago
Selected Answer: A
A. Add an Aurora Replica to the DB cluster. To improve the performance of the Amazon Aurora DB cluster with minimal downtime and no data loss, adding an Aurora Replica is a suitable option. Here's why: Adding an Aurora Replica (Read Replica): This helps offload read traffic from the primary (writer) node to the replica (reader) node. It allows the read workload to be distributed and can improve overall performance. Minimal Downtime: Adding a read replica is a non-disruptive operation and can be performed with minimal downtime. It involves creating a read replica from the existing primary instance. No Data Loss: Creating a read replica does not result in data loss. The replica is initially synchronized with the primary instance and continues to replicate changes as they occur. -- Options B, C, and D involve more significant changes or potential downtime:
upvoted 2 times
...
Raj8989
1 year, 6 months ago
Selected Answer: A
Keyword is downtime so it is A
upvoted 2 times
...
xile1021
1 year, 6 months ago
Selected Answer: C
C "If, after investigating your workload, you find that you need more memory, consider scaling up the DB instance class to a class with more RAM." https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.BestPractices.html
upvoted 2 times
...
wh1t4k3r
1 year, 7 months ago
"The change must minimize downtime" <- its all about this quote I agree that C would solve the issue in a better way, but migrating DBs is a operational nightmare.
upvoted 1 times
wh1t4k3r
1 year, 7 months ago
A and B are valid. A vote A to be the simpler one. TO decide between both, more info is required.
upvoted 1 times
...
...
Christina666
1 year, 9 months ago
Selected Answer: C
During sudden traffic surges, the high RAM consumption and increased select latency indicate that the current memory-optimized instance types might not be sufficient to handle the increased load. To improve the performance of the DB cluster, the best approach is to scale up the instance types to larger memory-optimized instances. Option A (Add an Aurora Replica) would help with read scalability and high availability but may not directly address the high RAM consumption and select latency issues. Option B (Modify the DB cluster to convert it into a multi-master DB cluster) doesn't directly address the high RAM consumption and select latency issues either. It would be more suitable for scenarios where you need to improve write scalability. Option D (Increase the disk storage capacity) would only address storage-related issues and would not directly improve the performance of the DB cluster in terms of RAM consumption and select latency.
upvoted 4 times
Christina666
1 year, 9 months ago
By taking a snapshot of the DB cluster and creating a new DB cluster with larger memory-optimized instances, you can effectively scale up the resources available to the database to handle the increased traffic volume and improve performance without losing any data or experiencing significant downtime. However, it's essential to plan and schedule this change during a maintenance window to minimize the impact on users.
upvoted 2 times
...
...
AShahine21
1 year, 10 months ago
Not enough info to decide.
upvoted 1 times
...
noahsark
2 years, 1 month ago
Selected Answer: A
Add an Aurora Replica to the DB cluster. For select latency
upvoted 1 times
...
Vivec
2 years, 1 month ago
Selected Answer: A
To improve the performance of the Aurora DB cluster, while minimizing downtime and without losing data, option A - adding an Aurora Replica to the DB cluster, is the best choice. Adding an Aurora Replica would create a new reader node in the cluster, which can help distribute the load during sudden traffic surges, and reduce the select latency. This can also help reduce RAM consumption on the writer node. Additionally, adding a replica can be done with minimal downtime, as it does not require any changes to the application, and data will be automatically replicated from the writer node to the new replica.
upvoted 3 times
...
Gil80
2 years, 2 months ago
Selected Answer: C
Option C, taking a snapshot of the DB cluster and creating a new DB cluster with larger memory-optimized instances, will allow the SysOps administrator to increase the memory capacity of the instances without losing any data. This option also minimizes downtime as the new DB cluster can be created from the snapshot while the original DB cluster continues to serve traffic. Once the new DB cluster is created, the administrator can update the web application to use the new DB cluster and then decommission the original DB cluster.
upvoted 2 times
defmania00
2 years, 2 months ago
The DB cluster already includes memory optimized instances types and the issues show up during traffic surges and selects (READs). Using a replica should help with the selects.
upvoted 1 times
...
...
Gil80
2 years, 2 months ago
Selected Answer: C
I say C. The high RAM consumption and increased select latency suggest that the memory-optimized instances in the Aurora DB cluster are struggling to handle the sudden traffic surges. To improve the performance of the DB cluster, the SysOps administrator should increase the memory capacity of the instances. Option A, adding an Aurora Replica, will not increase the memory capacity of the instances, so it is not a suitable option in this scenario. Option B, modifying the DB cluster to convert it into a multi-master DB cluster, may improve write performance, but it is unlikely to improve read performance or memory capacity. Additionally, this option may result in downtime and require more significant configuration changes than other options. Option D, increasing the disk storage capacity of the DB cluster, will not address the high RAM consumption and increased select latency, so it is not a suitable option in this scenario.
upvoted 3 times
...
zolthar_z
2 years, 4 months ago
Selected Answer: A
Memory Issues and select latency are more related with read process
upvoted 2 times
...
tyfta6
2 years, 4 months ago
Selected Answer: B
Vote for B In a multi-master cluster, all DB instances have read/write capability. Multi-master clusters have different availability characteristics, support for database features, and procedures for monitoring and troubleshooting than single-master clusters.
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago