Question 350:
A team currently maintains a forum-based application. All of the threads and their data are sent to a DynamoDB table. Below is the structure of the DynamoDB table Thread ID- Partition Key Author – Sort Key Number of Replies LastReplytimestamp The table currently has around 600 million rows of data. There is a requirement now to get those threads which are not getting any traction and no response has been made in 6 months. This needs to be done on an on-going basis. Which of the following would be the most efficient way to achieve this?
Answer options:
A.Query the data based on the ThreadID B.Query the data based on the Author C.Scan the entire table and search for the older records D.Create a global secondary index on LastReplytimestamp.