Page 4 of 4

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

Posted: February 9th, 2013, 5:04 pm
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!!

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

Posted: April 21st, 2013, 12:33 pm
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. :)

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

Posted: May 9th, 2013, 5:42 am
by fventura03
10.1MB/s on Giganews + 75mbps Verizon FiOS connection.