What's your fastest D/L speed?

Feel free to talk about anything and everything in this board.
war59312
Jr. Member
Jr. Member
Posts: 86
Joined: January 4th, 2011, 11:24 pm
Location: U.S.A
Contact:

Re: What's your fastest D/L speed?

Post by war59312 »

6.1MB/s Average Download Speed

TWC 50Mbps Connection

Using http://bintube.com/usenet/ Service

Damn good! Maxes out my connection every time.

Been with BinTube for 2 years now. Very happy!!
User avatar
sander
Release Testers
Release Testers
Posts: 8830
Joined: January 22nd, 2008, 2:22 pm

Re: What's your fastest D/L speed?

Post by sander »

I get 23.7 MB/s at SABnzbd application level, or 237 Mbps at network level.

If you have the log level set to +Debug, here's a oneliner to find the highest speed:

Code: Select all

sander@hapee:~$ grep -i bps: ~/.sabnzbd/logs/sabnzbd.log* | awk '{ print $NF }' | sort -nr  | head -1 | awk '{ print $1/1000000 " MB/s, meaning " int($1/100000) " Mbps" }' 
23.7381 MB/s, meaning 237 Mbps
sander@hapee:~$

Setup:
300/300 Mbps FttH connection
Intel(R) Core(TM) i3-2310M CPU @ 2.10GHz CPU
4GB RAM
Ubuntu 13.04
A few newsservers, article cache size 100MB

EDIT:

Slightly improved script:
1) 1024 bytes in a kB
2) 9 instead of 10 network layer bits per application layer byte

Code: Select all

sander@hapee:~$ grep -i bps: ~/.sabnzbd/logs/sabnzbd.log* | awk '{ print $NF }' | sort -nr  | head -1 | awk '{ print $1/(1024*1024) " MB/s, meaning " int($1/(1024*1024)*9) " Mbps" }' 
22.6384 MB/s, meaning 203 Mbps
sander@hapee:~$ 
So ... still an impressive 203 Mbps. :)
fventura03
Newbie
Newbie
Posts: 4
Joined: January 31st, 2013, 2:52 am

Re: What's your fastest D/L speed?

Post by fventura03 »

10.1MB/s on Giganews + 75mbps Verizon FiOS connection.
Post Reply