Question 424:
Your team is developing a feature that is used to enhance the production usage rate. A DynamoDB table has been implemented to trace relevant activities such as how the feature helps boosting the usage frequency. The table has about 2k new items every day and keeps increasing. Your PM wants to have a look at the daily data in this DynamoDB table. How do you present the data to PM in a proper way?
Answer options:
A.Create a new Data Pipeline to transfer the data from DynamoDB table to a S3. Activate the pipeline every day and then open the files in S3 using an editor. B.In the DynamoDB console, select all items, use the “Export to .csv” feature to download the whole data every day. Then use data analysis tool to manage the data. C.Create a new Data Pipeline to transfer the data from DynamoDB table to a S3. Add a schedule including a start time (8:00 AM) and end time (8:00PM) for this pipeline to run every day and collect files in S3 and get them presented to PM. D.Create a new Data Pipeline to transfer the data from DynamoDB table to a S3 bucket. Add a schedule for this pipeline to activate it every day at a suitable time and then open the collected files in S3.