We host our images on Amazon S3, and serve them through Amazon Cloudfront. We'd like to reduce our bandwidth expenses. We believe that we have quite a bit of bandwidth theft, and want to start using signed URLs to prevent this. However, we have to balance this against the fact that each time we send out a new signed url, it invalidates the browser caches for the image.

Our current plan is to generate a signed url that is valid for two months, then cache it locally and serve it for a month, before generating a new signed URL. This will allow the browser to cache the images for longer. However, this also means that anyone can then leech bandwidth for an image for up to two months.

Is there any way to have the link expire sooner, but have the browser continue to cache that image? I know that the etag and If-Modified-Since for the image do not change when the url is resigned for a new timestamp, but the the browser no longer knows to send those values in the header, because as far as it is concerned, this is a new URL. Is there any way around this problem?

link|improve this question

59% accept rate
Did you ever solve this issue? If so, what was the outcome? Thx – mr-euro Apr 3 '11 at 11:56
We ended up not worrying about bandwidth theft. – Karptonite Jun 3 '11 at 5:33
feedback

3 Answers

Have you measured how much of your bandwidth is being stolen? ie, check how many requests you get for your images that don't have a referrer field set to your own site.

For optimum caching, we recommend caching for 10 years, so 2 months sounds like a little short.

link|improve this answer
We had tried logging, but didn't have any good way of going through the log files to quantitate how much bandwidth was being stolen. We are trying again, with s3stat.com. Looking at a log file at random generally shows some leeching--there are some chinese sites that hotlink our images. but it is hard to say how much it is costing us, vs how much it would cost us in bandwidth from reloads if we had to reduce cache times. – Karptonite Jul 18 '10 at 8:02
feedback

How much caching is needed depends very much on the access pattern of the visitors on your website. For most sites I would say giving one month of caching should be more then enough to get effective caching.

Before putting a lot of effort into this you should put a concrete value to the actual cost of the leeching and put that against all the costs of solving the problem.

BTW: watermarking your images is in certain cases also very effective.

link|improve this answer
feedback

Why do you think that browser-caching configured via 'cache-control' headers relates to the expiration date of the URL? Cache-control of 2 months means that the browser won't talk to your site again if he sees the same URL. You could ensure sending the same image-urls to the same user-device-browser combination even if the query-signature was already invalidated. There's apparently no salt in the hashing so you just have to store the last expires value and can regenerate the same signature urls for every request until you trigger regeneration.

On the other hand this of course could give rise to the situation where the browser dropped a cached image and the request fails because the signed URL expired already. You could check for these problems via Javascript/jQuery and trigger regeneration and replacing of the signed urls.

Lots of work and complexity. Sorry to hear of this leeching problem and I hope your analysis showed that the problem wasn't that big in the end.

On a sidenote: Some browsers have problems with caching of URIs with ?-parameters.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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