You are the new IT architect in a company that operates a mobile sleep tracking application When activated at night, the mobile app is sending collected data points of 1 kilobyte every 5 minutes to your backend The backend takes care of authenticating the user and writing the data points into an Amazon DynamoDB table. Every morning, you scan the table to extract and aggregate last night's data on a per user basis, and store the results in Amazon S3. Users are notified via Amazon SMS mobile push notifications that new data is available, which is parsed and visualized by (The mobile app Currently you have around 100k users who are mostly based out of North America. You have been tasked to optimize the architecture of the backend system to lower cost what would you recommend?
A. Create a new Amazon DynamoDB (able each day and drop the one for the previous day after its data is on Amazon S3.
B. Have the mobile app access Amazon DynamoDB directly instead of JSON files stored on Amazon S3.
C. Introduce an Amazon SQS queue to buffer writes to the Amazon DynamoDB table and reduce provisioned
write throughput.
D. Introduce Amazon Elasticache lo cache reads from the Amazon DynamoDB table and reduce provisioned read throughput.
E. Write data directly into an Amazon Redshift cluster replacing both Amazon DynamoDB and Amazon S3.
Answer: B. Have the mobile app access Amazon DynamoDB directly instead of JSON files stored on Amazon S3.
D. Introduce Amazon Elasticache lo cache reads from the Amazon DynamoDB table and reduce provisioned read throughput.
You might also like to view...
Write a schema to validate the XML document. This XML document contains information about products in a grocery store. Each product is represented by a product element that contains the name, manufacturer, quantity and price of the product. Each product has a unique ID and is categorized as either perishable or nonperishable. If the product is perishable, it contains a food element. Element food contains the expiration date and nutrition facts. Nutrition facts describe the amount of proteins, fats and calcium in the food. If the product is nonperishable, it contains details of the stock available in one or more warehouses. A warehouse element has a unique ID and contains a description of the warehouse, along with product stock available at the warehouse.
What will be an ideal response?
How can you get the word "abc" in the main method from the following call?
java Test "+" 3 "abc" 2 a. args[0] b. args[1] c. args[2] d. args[3]