Forum
Download/write speed very slow - Printable Version

+- Forum (http://forum.xbian.org)
+-- Forum: Software (/forum-6.html)
+--- Forum: Configuration (/forum-17.html)
+--- Thread: Download/write speed very slow (/thread-132.html)

Pages: 1 2


Download/write speed very slow - Wesso - 28th Dec, 2012 03:58 AM

Hi there,

I bought i WD Elements USB 3.0 500 GB hard disk to download data on via NZBGet 9.0 which I compiled. I formatted the hard disk to Ext3 and set the download path of NZBGet to my /media/usb/ mountpoint.

I am achieving speeds of 800 Kbytes per second where is should achieve 6 MBytes per second. Is it just a hardware limitation or did i do something wrong?

Greetings,
Wesso


RE: Download/write speed very slow - CurlyMo - 28th Dec, 2012 04:02 AM

Remember that the RPi only has 2 USB 2.0 ports, so tranfser speeds will be noticably slower than USB 3.0


RE: Download/write speed very slow - Wesso - 28th Dec, 2012 04:06 AM

Yeah i know this, still i should be able to get more speed then what i have now right?


RE: Download/write speed very slow - Koenkk - 28th Dec, 2012 07:01 AM

This is indeed a bit slow, can you do a test with EXT4 or NTFS?


RE: Download/write speed very slow - Wesso - 28th Dec, 2012 10:09 AM

NTFS performs very slow, 300 KBytes and Ext4 similar to Ext3 performance, around 800 Kbytes


RE: Download/write speed very slow - BartOtten - 28th Dec, 2012 06:02 PM

It seems like the transferrate is limited by CPU power as NTFS is so much slower. As NTFS is a CPU-intensive filesystem...the CPU might be the bottleneck. However, 800kb/sec is far to slow afaik. Will test my diskspead later today. Sun is watching Finding Nemo Angel


RE: Download/write speed very slow - Enigmach - 28th Dec, 2012 07:38 PM

I used SabNZBd with NTFS and could reach higher speeds, typically above 800 kb/s although it was fluctuating a lot. I'm currently compiling NZBGet since it's less CPU-heavy so that should give a nice comparison. For comparison purposes, what is the brand and class of your SD-card?


RE: Download/write speed very slow - Enigmach - 28th Dec, 2012 08:56 PM

Update: Currently obtaining downloadspeeds of 1.1 MB/s (which is my max) with NZBGet, a class 10 SD-card and a 2TB NTFS disk. I'll check later how it runs if I add sickbeard and couchpotato, but it seem that the 300 KBytes you get with your NTFS disk is not necessarily a CPU limitation.

Edit: It seems that I had directed it to a wrong folder, so the 1.1 MB/s was on my SD-card. Currently getting ~375 - 435 KB/s, so I'll be looking for a solution as well Smile


RE: Download/write speed very slow - Pixarr - 29th Dec, 2012 01:10 AM

(28th Dec, 2012 08:56 PM)Enigmach Wrote:  Update: Currently obtaining downloadspeeds of 1.1 MB/s (which is my max) with NZBGet, a class 10 SD-card and a 2TB NTFS disk. I'll check later how it runs if I add sickbeard and couchpotato, but it seem that the 300 KBytes you get with your NTFS disk is not necessarily a CPU limitation.

Edit: It seems that I had directed it to a wrong folder, so the 1.1 MB/s was on my SD-card. Currently getting ~375 - 435 KB/s, so I'll be looking for a solution as well Smile

I have exacly the same problem with my 2tb NTFS disk, around the 500 KB/s. When i transfer on my SD-Card speed is around 1.1 MB/s as well.


RE: Download/write speed very slow - Enigmach - 29th Dec, 2012 01:39 AM

Based on this: http://www.readynas.com/forum/viewtopic.php?f=36&t=48722 it would seem a CPU issue. The NAS mentioned uses an ARM processor clocked at 1.6 GHz and gets 600 KB/s with NTFS disks. Other sources also report download speeds of max ~550 KB/s for the RPi so this might be the max for NTFS disks.


RE: Download/write speed very slow - Wesso - 30th Dec, 2012 05:02 AM

Small update: I have installed RaspBMC on the same kind of SD card, put it in the same raspberry, compiled NZBGet 9.0... I can now download up to 4.5 MBytes/s, definitely a improvement. Not sure what the bottleneck in Xbian could be.


RE: Download/write speed very slow - namtih - 30th Dec, 2012 06:15 AM

I would like to compare it with my configuration. To make it independent from programs like NZBGet please use these commands:
Code:
#to get the /dev path of your hd, mostly /dev/sda1
df

#run the short test
sudo hdparm -Tt /dev/sda1



RE: Download/write speed very slow - Wesso - 30th Dec, 2012 08:55 AM

This test only tests the read speed, but here you go:

Timing cached reads: 308 MB in 2.00 seconds = 153.62 MB/sec
Timing buffered disk reads: 70 MB in 3.01 seconds = 23.25 MB/sec

Keep in mind, its for my kind of working XBMC setup with RaspBMC and an Ext4 external via usb powered usb disk. Also to get more memory free for downloading I stopped XBMC.

Also, if you are using a SSL connection with your NZBGet it will go allot slower then without it. Just a tip.


RE: Download/write speed very slow - namtih - 30th Dec, 2012 06:43 PM

(30th Dec, 2012 08:55 AM)Wesso Wrote:  This test only tests the read speed, but here you go:

Good point ;-)
Second try:
Code:
#get /dev path and mount point of your USB drive, mostly /dev/sda1 and /media/usb0
df
/dev/sda1      1953503968 1711042516 242461452  88% /media/usb0

#Read test
sudo hdparm -t /dev/sda1
/dev/sda1:
Timing buffered disk reads:  70 MB in  3.00 seconds =  23.29 MB/sec

#Write test - will create a 500mb file
cd /media/usb0
dd if=/dev/zero of=500mb.bin bs=1M count=500 oflag=direct
500+0 records in
500+0 records out
524288000 bytes (524 MB) copied, 17.6986 s, 29.6 MB/s

#Delete the 500mb test file
rm 500mb.bin

Read: 23.29 MB/sec
Write: 29.60 MB/sec
NTFS, XBMC was stopped before.


RE: Download/write speed very slow - BartOtten - 2nd Jan, 2013 05:01 AM

Read: 21.60 MB/sec
Write: 26.0 MB/s