Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
1,392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. Q1. A customer has asked for a solution that will analyze the clickstream data from a website and provide a real-time
  2. dashboard of important metrics including, what pages visitors linger on and what items are searched. This will help identify
  3. the pages that need improvement. Which of the folling options will meet the requirements for capturing and analyzing the data?
  4.  
  5. A. Have the website upload the log files to an Amazon S3 bucket. Run a daily Amazon Elastic MapReduce job to analyze the data
  6. and update the board.
  7.  
  8. B. Have the web clicks added to Amazon Kinesis. Use Kinesis workers to analyze the data and update the board.
  9.  
  10. C. Have each click placed on an Amazon SQS queue and then have an Amazon EC2 instance launched periodically to drain the queue
  11. into RDS. Then, analyze the data with SQL and update the board.
  12.  
  13. D. Have the web clicks written to Amazon DynamoDB and use EMR hourly to extract and analyze the data before posting to the
  14. board.
  15.  
  16. ==B==
  17.  
  18. Q2. An education company delivers course materials to their students as PDF downloads. Recently there have more downloads
  19. than students in their classes. The company wants to limit each PDF to being downloaded only by members of that class. In
  20. their current architecture, students sign in to their website running on EC2 instances. The website provides links to publicly
  21. accessible files in Amazon S3. They want to use Amazon CloudFront to limit the number of downloads. What should you recommend?
  22.  
  23. A. Configure CloudFront with an Origin Access Identity for S3, and remove public read actions from the S3 bucket policy.
  24. Configure S3 as a Trusted Signer for CloudFront. Have the web servers return a CloudFront-signed URL.
  25.  
  26. B. Configure CloudFront with an Origin Access Identity for S3. Create an EC2 role for the web servers that explicity denies
  27. all S3 actions. Have the web servers return a CloudFront-signed URL.
  28.  
  29. C. Create a CloudFront Behavior with the AWS account as a Trusted Signer. Update the S3 bucket policy to remove all public
  30. read actions. Have the web servers return the S3 URL.
  31.  
  32. D. Configure CloudFront with an Origin Access Identity for S3, and remove public read actions from the S3 bucket policy.
  33. Create a CloudFront Behavior with the AWS account as a Trusted Signer. Have the web servers return a CloudFront-signed URL.
  34.  
  35. ==D==
  36.  
  37. Q3. An AWS customer has a mobile pet minder application. The backend receives picture every 10 seconds from source cameras
  38. and updates the end-user's mobile application with the latest picture of their pet. Pictures are not stored, they are either
  39. delivered or deleted when the next picture arrives. The customer wants to ensure that only their customers have access to the
  40. pictures, that the service can cope with sudden large peaks in load, and that it is highly available. Which of the following
  41. options will meet all of these requirements?
  42.  
  43. A. Use Amazon Cognito for mobile user sign-in. Use an Auto Scaling group of EC2 instances across multiple Availability Zone
  44. for serving the images, ElastiCache with a Redis Replication Group for caching, and multi-AZ RDS for storing user
  45. information.
  46.  
  47. B. Use Amazon Cognito for mobile user sign-in, an Auto Scaling group of EC2 instances across multiple Availability Zones for
  48. serving the images, and an EC2 instance running AWS Storage Gateway for holding the images.
  49.  
  50. C. Use AWS web identity federation for mobile user sign-in, an Auto Scaling group of EC2 instances across multiple
  51. Availability Zones for serving the images, an ElastiCache instance of memcached as a caching layer, and multi-AZ RDS
  52. instance as image store.
  53.  
  54. D. Use ELB with SSL mutual authentication for mobile user sign-in, an Auto Scaling group of EC2 instances across multiple
  55. Availability Zone for holding and serving the images, and RDS for storing user information.
  56.  
  57. ==A==
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement