1. A manufacturing company wants to implement predictive maintenance on its machinery equipment. The company will install thousands of IoT sensors that will send data to AWS in real time. A solutions architect is tasked with implementing a solution that will receive events in an ordered manner for each machinery asset and ensure that data is saved for further processing at a later time.Which solution would be MOST efficient?
A) Use Amazon Kinesis Data Streams for real-time events with a shard for each equipment asset. Use Amazon Kinesis Data Firehose to save data to Amazon EBS. B) Use an Amazon SQS FIFO queue for real-time events with one queue for each equipment asset. Trigger an AWS Lambda function for the SQS queue to save data to Amazon EFS. C) Use Amazon Kinesis Data Streams for real-time events with a partition for each equipment asset. Use Amazon Kinesis Data Firehose to save data to Amazon S3. D) Use an Amazon SQS standard queue for real-time events with one queue for each equipment asset. Trigger an AWS Lambda function from the SQS queue to save data to Amazon S3.
2. A company is migrating from an on-premises infrastructure to the AWS Cloud. One of the company's applications stores files on a Windows file server farm that uses Distributed File System Replication (DFSR) to keep data in sync. A solutions architect needs to replace the file server farm.Which service should the solutions architect use?
A) Amazon S3 B) AWS Storage Gateway C) Amazon EFS D) Amazon FSx
3. A call center application consists of a three-tier application using Auto Scaling groups to automatically scale resources as needed. Users report that every morning at 9:00 AM the system becomes very slow for about 15 minutes. A Solution Architect determines that a large percentage of the call center staff starts work at 9:00 AM, so Auto Scaling does not have enough time to scale out to meet demand.How can the Architect fix the problem?
A) Use Reserved Instances to ensure the system has reserved the right amount of capacity for the scale-up events. B) Create an Auto Scaling scheduled action to scale out the necessary resources at 8:30 AM every morning. C) Permanently keep a steady state of instances that is needed at 9:00 AM to guarantee available resources, but leverage Spot Instances. D) Change the Auto Scaling group's scale out event to scale based on network utilization.
4. A mobile application serves scientific articles from individual files in an Amazon S3 bucket. Articles older than 30 days are rarely read. Articles older than 60 days no longer need to be available through the application, but the application owner would like to keep them for historical purposes.Which cost-effective solution BEST meets these requirements?
A) Create lifecycle rules to move files older than 30 days to Amazon S3 Standard Infrequent Access and move files older than 60 days to Amazon Glacier. B) Create a Lambda function to move files older than 30 days to Amazon EBS and move files older than 60 days to Amazon Glacier. C) Create a Lambda function to move files older than 30 days to Amazon Glacier and move files older than 60 days to Amazon EBS. D) Create lifecycle rules to move files older than 30 days to Amazon Glacier and move files older than 60 days to Amazon S3 Standard Infrequent Access.
5. A company's web application uses an Amazon RDS PostgreSQL DB instance to store its application data. During the financial closing period at the start of every month. Accountants run large queries that impact the database's performance due to high usage. The company wants to minimize the impact that the reporting activity has on the web application.What should a solutions architect do to reduce the impact on the database with the LEAST amount of effort?
A) Create a read replica and direct reporting traffic to the replica. B) Create a cross-Region read replica and direct reporting traffic to the replica. C) Create a Multi-AZ database and direct reporting traffic to the standby. D) Create an Amazon Redshift database and direct reporting traffic to the Amazon Redshift database.
1. Right Answer: C Explanation: https://aws.amazon.com/kinesis/data-streams/faqs/
2. Right Answer: D Explanation: Amazon FSx provides you with two file systems to choose from: Amazon FSx for Windows File Server for business applications and Amazon FSx for Lustre for high-performance workloads.https://aws.amazon.com/fsx/
3. Right Answer: B Explanation: https://docs.aws.amazon.com/autoscaling/ec2/userguide/schedule_time.html
4. Right Answer: A Explanation:
5. Right Answer: A Explanation: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html
Leave a comment