共65题,130分钟。

1. 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? (Choose 2 answers)

  1. First option Create a new Amazon DynamoDB (able each day and drop the one for the previous day after its data is on Amazon S3.
  2. Second optioHave the mobile app access Amazon DynamoDB directly instead of JSON files stored on Amazon S3.
  3. Third optionIntroduce an Amazon SQS queue to buffer writes to the Amazon DynamoDB table and reduce provisioned write throughput.
  4. New OptionIntroduce Amazon Elasticache lo cache reads from the Amazon DynamoDB table and reduce provisioned read throughput.
  5. New OptionWrite data directly into an Amazon Redshift cluster replacing both Amazon DynamoDB and Amazon S3.

2. You have recently joined a startup company building sensors to measure street noise and air quality in urban areas.

The company has been running a pilot deployment of around 100 sensors for 3 months each sensor uploads 1KB of sensor data every minute to a bac