Can someone explain to me what Amazon Web Services components are used in a normal web service? -


The web service I want to run on AWS is to store and retrieve user data, through the user's website It should be able to render, and parse a few thousand sites' sitemaps for every 10 minutes or more. Components like SWS, S3, EC2, and CloudFront need to be used. I would have a brief summary about the purpose of each component :)

I especially aimed at simple line service Do not understand

For example, to store data, actual applications and hosting S3 (networked storage) You can use EC2 (On-Demand, Scalable, VPS). You probably will not need CloudFront (geographically optimized content mirroring).

We use SQS (simple queue service) for those queue work, which we want to execute asynchronously, i.e. without waiting for the user to wait for their completion As it turns out that the SQAS becomes incredibly expensive, if your site also has minor traffic, then we will soon be able to raise funds on one of our boxes.


Comments