I'm using Amazon's CloudFront to serve static files of my web apps.

Is there no way to tell a cloudfront distribution that it needs to refresh it's file or point out a single file that should be refreshed?

Amazon recommend that you version your files like logo_1.gif, logo_2.gif and so on as a workaround for this problem but that seems like a pretty stupid solution. Is there absolutely no other way?

link|improve this question

72% accept rate
possible duplicate of How can I update files on Amazon's CDN (CloudFront)? – Steffen Opel May 21 at 9:20
as a sidenote, I don't think it's stupid to name static files like that. We've been using it a lot and having automated renaming as per file version in version control has saved us a lot of headaches. – eis May 21 at 9:23
feedback

10 Answers

up vote 39 down vote accepted

Good news. Amazon finally added an Invalidation Feature. See the API Reference.

This is a sample request from the API Reference:

POST /2010-08-01/distribution/[distribution ID]/invalidation HTTP/1.0
Host: cloudfront.amazonaws.com
Authorization: [AWS authentication string]
Content-Type: text/xml

<InvalidationBatch>
   <Path>/image1.jpg</Path>
   <Path>/image2.jpg</Path>
   <Path>/videos/movie.flv</Path>
   <CallerReference>my-batch</CallerReference>
</InvalidationBatch>
link|improve this answer
Sweeeeeeeeeeeeeet! – Martin Sep 6 '10 at 21:20
Please note that invalidation will take some time (apparently 5-30 minutes according to some blog posts I've read). – Michael Warkentin Mar 4 at 0:54
feedback

With the Invalidation API, it does get updated in a few of minutes.
Check out PHP Invalidator.

link|improve this answer
This is exactly what I was looking for. I am going to hook this in Beanstalkapp's web-hooks when auto deploying from git! Thanks for the link! – cointilt Apr 28 '11 at 18:42
feedback

Bucket Explorer has a UI that makes this pretty easy now. Here's how:

Right click your bucket. Select "Manage Distributions."
Right click your distribution. Select "Get Cloudfront invalidation list" Then select "Create" to create a new invalidation list. Select the files to invalidate, and click "Invalidate." Wait 5-15 minutes.

link|improve this answer
Thanks, super helpful! – Alex Dean Sep 13 '11 at 14:39
feedback

Set TTL=1 hour and replace

http://developer.amazonwebservices.com/connect/ann.jspa?annID=655

link|improve this answer
feedback

Just posting to inform anyone visiting this page (first result on 'Cloudfront File Refresh') that there is an easy-to-use+access online invalidator available at:

http://www.swook.net/p/cloudfront-invalidator.html

This new invalidator is:

  • Fully online (no installation)
  • Available 24x7 (hosted by Google) and does not require any memberships.
  • There is history support, and path checking to let you invalidate your files with ease. (Often with just a few clicks after invalidating for the first time!)
  • It's also very secure, as you'll find out when reading its release post.

Have fun!

link|improve this answer
feedback

If you have boto installed (which is not just for python, but also installs a bunch of useful command line utilities), it offers a command line util specifically called cfadmin or 'cloud front admin' which offers the following functionality:

Usage: cfadmin [command]
cmd - Print help message, optionally about a specific function
help - Print help message, optionally about a specific function
invalidate - Create a cloudfront invalidation request
ls - List all distributions and streaming distributions

You invaliate things by running:

$sam# cfadmin invalidate <distribution> <path>
link|improve this answer
feedback

You can just use this online tool here: http://www.swook.net/p/cloudfront-invalidator.html

link|improve this answer
feedback

As of March 19, Amazon now allows Cloudfront's cache TTL to be 0 seconds, thus you (theoretically) should never see stale objects. So if you have your assets in S3, you could simply go to AWS Web Panel => S3 => Edit Properties => Metadata, then set your "Cache-Control" value to "max-age=0".

This is straight from the API documentation:

To control whether CloudFront caches an object and for how long, we recommend that you use the Cache-Control header with the max-age= directive. CloudFront caches the object for the specified number of seconds. (The minimum value is 0 seconds.)

link|improve this answer
feedback

I think i found the answer here: http://stackoverflow.com/questions/1086240/updateing-files-on-amazons-cdn

With other words: It's impossible.

That makes me wonder how are you guys using cloudfront? When I deploy my apps i want't to upload all static files to s3. With s3 that works fine but beacuse of this 24h delay on cloudfront i can't use cloudfront.

link|improve this answer
1  
maybe you should put a timestamp or a revision number in the filename – lhahne Oct 31 '09 at 8:19
1  
It isn't impossible. Take a look at the invalidation feature. – Ted Dunning Jul 8 '11 at 17:59
feedback

The various caches can take up to 24 hours to clear, and cloudfront does not honor query strings, so there isn't really anyway to force the cache to expire prematurely inside a single distribution.

A couple helpful notes:

  1. Consider publishing a new cloudfront distribution every time you update your website. There is still a significant delay while you wait for the new dns record to replicate, but it will be considerably less than 24 hours for most of your users. I try to publish all my static files to a brand new distribution a couple hours before deploying my website changes. Then, the files are ready to go by the time I flip the switch to the new URL root.

  2. Any user generated images, or other files that are likely to change between website revisions should be served directly off of s3 rather than cloudfront (assuming you have your website setup to push images automatically to s3). There is simply no way to reliably server transactional files from cloudfront.

Good Luck!

link|improve this answer
1  
This is incorrect. There is a way to invalidate cached entries and that causes the item to be refetched from the origin server. – Ted Dunning Jul 8 '11 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.