- Newest
- Most votes
- Most comments
Overview
- Configure DynamoDB with provisioned read and write by using the DynamoDB Standard table class. Set DynamoDB auto scaling to a maximum defined capacity.
- This is a good option as its cost-effective as you utilize provisioned capacity mode which is more cost effective than on-demand mode. It also uses application-autoscaling so can scale to meed demand of unpredictable traffic.
- Configure DynamoDB in on-demand mode by using the DynamoDB Standard table class.
- This option is extrememly good to suit unpredictable traffic, but the requirements emphasize that it wants the most cost-efficient solution which this is not (in comparison to A)
- Configure DynamoDB with provisioned read and write by using the DynamoDB Standard Infrequent Access (DynamoDB Standard-IA) table class. Set DynamoDB auto scaling to a maximum defined capacity.
- Standard-IA is optimized for workloads that have a high amount of storage and little throughput, hence the name Infrequent Access. But the suggested workload states read and write throughput to the database will be moderate to high, so this is not a valid solution and will actually be more costly than option A
- Configure DynamoDB in on-demand mode by using the DynamoDB Standard Infrequent Access (DynamoDB Standard-IA) table class.
- This is a mix of B and C, which means its likely the worst option for this given workload in terms of cost efficiency.
Summary
When cost is a major factor is best to utilize provisioned capacity mode. You can also buy capacity reservations in provisioned capacity mode which helps reduce costs even more by committing to a 1 or 3 year capacity reservation.
On-demand mode is great for unpredictable traffic and should cost not be the main factor in this workload, option B would have been best.
Option A takes the win, burst capacity can help with handling the unpredictable aspect of the workload and application autoscaling will ensure it scales easily. Provisioned capacity mode and possible reservations ensure its cost effective.
Here’s why it’s not C
The Amazon DynamoDB Standard Infrequent Access (DynamoDB Standard-IA) table class helps you reduce your DynamoDB costs by up to 60% for tables that store data that is infrequently accessed. The DynamoDB Standard-IA table class is ideal for use cases that require long-term storage of data that is infrequently accessed, such as application logs, old social media posts, ecommerce order history, and past gaming achievements.
I would opt for A and here’s a good article to why. It’s known demand will be moderate to high and has to be most cost effective.
Relevant content
- asked 6 months ago
- asked 3 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 7 months ago