What can the Database Specialist do to resolve this error?
(Choose two.)
Change the table to use Amazon DynamoDB Streams
Purchase DynamoDB reserved capacity in the affected Region
Increase the write capacity units for the specific table
Change the table capacity mode to on-demand
Change the table type to throughput optimized
Explanations:
DynamoDB Streams is used for capturing changes to data, not for addressing throughput issues. It does not impact capacity settings or resolve the ProvisionedThroughputExceededException error.
Purchasing DynamoDB reserved capacity doesn’t directly resolve the error. Reserved capacity is more about cost savings and doesn’t change table performance limits in real-time.
Increasing the write capacity units for the specific table helps to handle more writes and prevent the ProvisionedThroughputExceededException error during peak usage.
Changing the table capacity mode to on-demand automatically adjusts the table’s throughput capacity to handle spikes in traffic, resolving the error without manual intervention.
Changing the table type to throughput optimized is not a valid option in DynamoDB. DynamoDB does not have a “throughput optimized” table type.