I am using Amazon's Cloudfront CDN for static assets. Couldfront issues an Etag for every GET request. I have set meta data fro all my assets with specific Cache-Control information, which (as I understand) makes the Etag superfluous. I test my site's load performance at WebPageTest.org, and it dings me for these unnecessary Etags. If they are in fact unnecessary, does anyone know of a way to suppress their being emitted?

link|improve this question

71% accept rate
Any update on this? ETag is forcing multiple get requests (even when Expires and max-age are set). – scoarescoare Feb 19 at 19:11
feedback

1 Answer

If Cloudfront delivers consistent Etags regardless of which node you download the asset from, then this should minimize the problem. I've tested this by doing the following:

Resolving to Cloudfront from two different locations, I verified that the CNAMEs resolved to completely different sets of IP addresses. The first server resolved to a set of 8 IP addresses in Amazon's LAX data center (lax1.cloudfront.net), the second server resolved to 8 IP addresses in Amazon's SFO datacenter (sfo4.cloudfront.net).

I selected an object in our Cloudfront distribution and did a "wget --server-response" from each location, and then compared the results. I did this for each data center multiple times to get responses from different IP addresses in each datacenter.

The results were that the Etags were the same, regardles of which datacenter I hit, and which IP address responded from that datacenter.

I did notice that the following headers DID differ between servers x-amz-id-2 x-amz-request-id Age X-Amz-Cf-Id Via

Hope this helps,

David

[edited - removed comments on eTags based on good correction below]

link|improve this answer
2  
This is just not true, web performance monitors bug you about Etag and Last-Modified headers because these two cause unnecessary round-trips to the server even when you have a very long max-age in Cache-Control header. If the Etag (and last-modified) are used correctly, the result of these round-trips would be status code 304. But the difference here is 300ms vs. 2ms (browser cache) and can accumulate if you use many static assets (css, js, images). – Evgeny Jan 8 at 17:35
feedback

Your Answer

 
or
required, but never shown

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