0

I have serverless microservices using API gateway/lambda/dynamodb. We have a stream of measurements coming in from Kinesis and if an alarm condition is detected, it needs to be triggered after x seconds. What's the best way to trigger a task after x seconds in this case? X is configurable by the user for different conditions and cases.

systemdebt
  • 4,589
  • 10
  • 55
  • 116

1 Answers1

0

Maybe this can help How do I delay processing of AWS Kinesis messages?

  1. use SQS delay message
  2. delay x seconds in lambda, if it is not too long(max 15min for a lambda to run)
izayoi
  • 129
  • 5