Last year I created a GreaseMonkey script called Invisible Web that notified you about the web beacons (web bugs) that the page you’re on is using to track your behavior.
Changes in this release:
Favicons are now stored locally to increase performance.
Updated definition for Lookery
Updated definition for Google Analytics
Added definition for Piwik Analytics
Added definition for Mint
Added definition for Facebook Beacon
Added definition for TypePad Stats
Added definition for Wordpress Stats
If you’re interested to know what we’re up to at Lookery listen to this interview my partner Scott Rafer did with Social Times last week.
PS. Checkout our new Lookery East Coast Office (Cambridge, MA)
Thanks to the Viximo guys for renting part-time space to us.
We’re in the office only a couple of days a week as we all prefer to work from home and keep it frugal.
In my last post I compared using Amazon S3 as a CDN to other low cost alternatives. What was clear was that S3 performed badly when compared to the true CDNs. Not such a surprising outcome; S3 was not designed to be a CDN.
The real surprise to me was that CacheFly, the lowest cost CDN I tested, performed better than the much higher priced options.
My performance were pure HTTP GET based and utilized the monitoring service Pingdom. What performance monitoring services don’t monitor is how quickly a website load feels to the end-user.
A lot can be done to make a website “feel” faster most of these techniques are outlined in the book High Performance Web Sites by Steve Souders of Yahoo!. Most of the book’s content can be read for free on the Yahoo! Developer Network.
The simplest way to increase performance is to minimize requests to your server by setting proper Expires and Cache-Control headers so that your static content can be cached.
When I tested the CDN options for cacheability only Panther Express and my DIY Nginx web server EC2 servers returned proper “cacheable” headers.
S3 and CacheFly returned no “cache-friendly” headers and EdgeCast returned proper headers but the server time was inaccurate which could lead to caching issues.
Amazon S3
Panther Express
EdgeCast
CacheFly
I found no way to add expires headers to files hosted on CacheFly. You can add custom headers to files in S3.
By setting your Expires headers on your static files far into the future you can create a cheap CDN with S3 that can “feel” as fast a traditional CDN. You’ll need to automate this and make it part of your deployment process which ideally renames the deployed files to contain revision numbers so that you can really set those Expires headers far in the future.
At Lookery our Javascript analytics tracker is now pushing more than 250GB of bandwidth per month. This javascript file has grown a bit but is still about 6kb.
We’ve been serving that file from a Nginx webserver running on Amazon EC2 instances. Currently Amazon has 3 EC2 data centers but strangely they are all located on the East Coast of the US (Virginia). Since a lot of our users are international we needed to move that file to a CDN in order to reduce latency.
Less than a month ago we moved that single file off to CacheFly a low-priced CDN. I thought CacheFly would be an interim solution but from our performance testing they seem to be a good longer term option.
For this round of testing I tested the following serving options:
For the next round of tests I’ll add Panther Express to the mix.
Performance testing Amazon S3 is a bit unfair but since so many people are using this as a cheap solution I thought I would test it out myself. The performance tests show that you’re much better serving your static content from a lightweight server like NGINX or using an inexpensive option like CacheFly.
For the performance tests I used Pingdom, a 3rd party performance monitoring service that we’ve been quite happy with.
The monitoring servers were geographically distributed as follows:
Summary
CacheFly performed the best but only slightly better than EdgeCast. The S3 option was the worst with the Nginx/DIY option performing just over 100 ms faster.
Details
Below are the details for a single day. I ran these tests for over 2 weeks, the results were identical to this single day.
CacheFly CDN
Nginx on an Amazon EC2 Instance (DIY)
EdgeCast CDN
Amazon S3 used as a CDN
Notes
I also tested a second DIY option, running a Varnish cache on an Amazon EC2 instance, but for static content Nginx performed much better so I omitted the results.
EdgeCast has an option that allows frequently used content to be served directly from RAM. My trial account did not allow me to test this option. This option would allow for even better performance, possibly matching/beating CacheFly’s performance.
So far we’re sticking with CacheFly and testing a few other options. I’ll post the Panther Express performance after our tests are complete.
Let me know if you’ve found similar results or if I should be testing any other solutions.