📜 ⬆️ ⬇️

Popular About Amazon Web Services: CloudFront [continued]

Good day to all! image

In my previous article on AWS, I talked in general about all the services I worked with. Today I decided to add a story about CloudFront, because I have something to tell.

Amazon CloudFront


Description

CloudFront - CDN (Content Delivery Network) from Amazon, based on the S3 service or other file source. Distribution is created and fixed to the S3 bakte, or to another source, which is specified by the user.

Creating content distribution looks like this:
  1. The bucket is chosen:
    image
    ')
    Or another source:

    image
  2. We set our CNAME [optional], by which the distribution will be available:
    image
  3. Check if all parameters are correct:
    image
  4. Send CNAME in the domain to the Domain Name provided after creation

Types of distribution

CloudWatch supports 2 types of distribution:
  1. Download (Download) - used for static content sites (images, js, css).
  2. Streaming - used to broadcast video / audio content. The main difference of this distribution is the ability to stop the playback, i.e. press pause, rewind back. Also in the broadcast, you can insert ads in certain places of the file playback.


Distribution points

Like any CDN service, CloudFront has distribution points (Edge Network) worldwide:
USAEuropeAsiaSouth America
Ashburn, VAAmsterdamHong KongSao paulo
Dallas / Fort Worth, TXDublinOsaka
Jacksonville, FLFrankfurtSingapore
Los Angeles, CA (2)LondonTokyo
Miami, FLMilan
New York, NY (2)Paris
Newark, NJStockholm
Palo Alto, CA
San Jose, CA
Seattle, WA
South Bend, IN
St. Louis MO

As you can see, AWS is more targeted at the USA and Europe, but from Kharkov, for example, I was carried to Milan at a fairly good speed:
image

In developing

AWS is working on developing CloudFront and offering in the future:


Billing

CloudFront billing is performed for traffic and HTTP requests. At the moment, the billing for S3 traffic and CloudFront are the same, so you can get a Amazon CDN “in the appendix” to S3.

Source: https://habr.com/ru/post/139048/


All Articles