The concept is actually quite simple.
- Try to download multiple images with progressively increasing sizes
- Set a reasonable timeout for the images to download
- Stop at the first one that times out - that means that we have enough data to make an estimation.
- Calculate the bandwidth by dividing each image's size by the time it took to download.
I also try to measure latency. This is not network latency, but server latency from the user's point of view, ie, how long does it take between request and first byte of response. I run this test multiple times and do the same kind of stats on this data.
The goal of this test
The few people I've shown this to all had the same question. What's the goal of this test? There are already several free bandwidth testers available that one can use to determine ones bandwidth, so what does this do differently.The way I see it, as a site owner, I don't really care about the bandwidth that my users have with their ISPs - unless of course, I have my servers in the ISP's data centre. I really care about the bandwidth that user's experience when visiting my website. This test aims to measure that. Ideally, this piece of code can be put into any web page to measure the user's bandwidth in the background while he's interacting with your site. I don't know how it will work in practice though.
Insights from the data
I don't really know. It could be useful to figure out what users from different geographical locations experience. Same with ISPs. It might also just tell me that dreamhost is a really bad hosting provider.Data consistency
In my repeated tests, I've found that the data isn't really consistent. It's not all over the place, but it fluctuates a fair bit. I've seen different levels of consistency when using the geometric mean and the median, but I don't think I have enough data yet to decide which is more stable. This could mean that my server just responds differently to multiple requests or it could mean many other things. I don't really know, but feel free to leave a comment if you do.Credits
I don't know who first came up with the idea of downloading multiple images to test bandwdith, but it wasn't my idea. The latency test idea came from Tahir Hashmi and some insights came from Stoyan Stefanov.Once again, here's the link.
Short URL: http://tr.im/bwmeasure
4 comments :
I have tried it and it gave me this result:
Bandwidth: NaN Gbps, Latency: 363ms
@Satya: I saw the same thing last night, but it seems to be working now. Might have been a temporary problem with my server. Could you try again and let me know if you still see the problem? If you do, I might have to increase the timeout.
Give me Bandwidth: NaN Gbps, Latency: 357ms. No idea what can I derive out of this :(
Abhinav, Satya, can you open your firebug console and tell me what it says in there?
Post a Comment