Reputation: 19
I have the below use case. Need some help in figuring out the best options on AWS.
Upvotes: 0
Views: 265
Reputation: 984
Sounds like a typical use case for SQS, a distributed queue.
General approach: http://docs.aws.amazon.com/autoscaling/latest/userguide/as-using-sqs-queue.html
Using PaaS Elastic Beanstalk for this kind of setup: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features-managing-env-tiers.html
Example implementation: https://cloudonaut.io/antivirus-for-s3-buckets/
Upvotes: 1