AWS Certified Solutions Architect – Professional — Question 109
You require the ability to analyze a customer's clickstream data on a website so they can do behavioral analysis. Your customer needs to know what sequence of pages and ads their customer clicked on. This data will be used in real time to modify the page layouts as customers click through the site to increase stickiness and advertising click-through.
Which option meets the requirements for captioning and analyzing this data?
Answer options
- A. Log clicks in weblogs by URL store to Amazon S3, and then analyze with Elastic MapReduce
- B. Push web clicks by session to Amazon Kinesis and analyze behavior using Kinesis workers
- C. Write click events directly to Amazon Redshift and then analyze with SQL
- D. Publish web clicks by session to an Amazon SQS queue then periodically drain these events to Amazon RDS and analyze with SQL.
Correct answer: B
Explanation
Option B is correct because Amazon Kinesis allows for real-time processing of streaming data, making it ideal for capturing clickstream data as it happens. The other options either do not support real-time analysis (like A and C) or involve more complex data handling and delays (like D), which are not suitable for immediate adjustments based on user interactions.