Amazon CloudFront Latency

CloudFront attempts to fetch uncached content from the origin server in real time. There is no “replication delay” or similar issue because CloudFront is a pull-through CDN. Each CloudFront edge location knows only about your site’s existence and configuration; it doesn’t know about your content until it receives requests for it. When that happens, the CloudFront edge fetches the requested content from the origin server, and caches it as appropriate, for serving subsequent requests.

The issue that’s occurring here is related to a concept sometimes called “negative caching” — caching the fact that a request won’t work — which is typically done to avoid hammering the origin of whatever’s being cached with requests that are likely to fail anyway.

By default, when your origin returns an HTTP 4xx or 5xx status code, CloudFront caches these error responses for five minutes and then submits the next request for the object to your origin to see whether the problem that caused the error has been resolved and the requested object is now available.

— http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html

If the browser, or anything else, tries to download the file from that particular CloudFront edge before the upload into S3 is complete, S3 will return an error, and CloudFront — at that edge location — will cache that error and remember, for the next 5 minutes, not to bother trying again.

Not to worry, though — this timer is configurable, so if the browser is doing this under the hood and outside your control, you should still be able to fix it.

You can specify the error-caching duration—the Error Caching Minimum TTL—for each 4xx and 5xx status code that CloudFront caches. For a procedure, see Configuring Error Response Behavior.

— http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html


To configure this in the console:

  • When viewing the distribution configuration, click the Error Pages tab.

  • For each error where you want to customize the timing, begin by clicking Create Custom Error Response.

  • Choose the error code you want to modify from the drop-down list, such as 403 (Forbidden) or 404 (Not Found) — your bucket configuration determines which code S3 returns for missing objects, so if you aren’t sure, change 403 then repeat the process and change 404.

  • Set Error Caching Minimum TTL (seconds) to 0

  • Leave Customize Error Response set to No (If set to Yes, this option enables custom response content on errors, which is not what you want. Activating this option is outside the scope of this question.)

  • Click Create. This takes you back to the previous view, where you’ll see Error Caching Minimum TTL for the code you just defined.

Repeat these steps for each HTTP response code you want to change from the default behavior (which is the 300 second hold time, discussed above).

When you’ve made all the changes you want, return to the main CloudFront console screen where the distributions are listed. Wait for the distribution state to change from In Progress to Deployed (formerly, this took quite some time but now requires typically about 5 minutes for the changes to be pushed out to all the edges) and test.

Leave a Comment