Question 333:
Your team is developing an online bidding application which has used DynamoDB tables to store customers’ information. The application requires the fastest possible response time for reads in microseconds. However, it seems that the existing DynamoDB tables cannot provide such performance. Which approach is the best to improve the read performance greatly without modifying existing application logic?
Answer options:
A.Configure an on-demand read/write capacity mode for the DynamoDB table. B.Create a Global Secondary Index for the DynamoDB table so that queries can be more efficient. C.Create a read replica table in another region (Global Table) to improve the read capacity. D.Configure a DynamoDB Accelerator (DAX) cluster for the application to use which can deliver up to a 10x performance improvement.