Scenario: You are designing an application where you need to perform real-time analytics on data changes in a DynamoDB table. How would you implement this using DynamoDB Streams and AWS Lambda?

  • Create a Lambda function triggered by DynamoDB Streams
  • Directly query the DynamoDB table for changes
  • Schedule periodic batch jobs with Lambda
  • Use AWS Glue for ETL jobs
Creating a Lambda function triggered by DynamoDB Streams allows you to process changes in real time, enabling real-time analytics.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *