amazon web services - Scheduling SQS messages -


my use case follows: need able schedule sqs messages in such way scheduled messages can added queue on specific date/time, , on recurring basis needed.

at implementation level, i'm looking have function can call pass in sqs queue, message, , schedule want run on, without having build actual scheduler logic.

i haven't seen in aws seems allow that, didn't impression lambda functions need unless i'm missing something.

is there other third party cloud service scheduled processes should into, or better off in end running scheduling machine @ aws , have rest api can add cron jobs/windows scheduled tasks handle scheduling of sqs messages?

i see 2 different ways of accomplishing this, both based on cloudwatch scheduled events. first have cloudwatch fire off lambda. lambda either have needed parameters or them somewhere else - example, dynamodb table. otherwise, rule target allows specify sqs queue - skipping lambda. i'm not sure if have configuration ability you'd want.

either way, checkout cloudwatch -> events -> create rule in aws console see choices.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -