[7. June 2013] Youporn available now | [19. April 2013] A-400 Advanced Network Setup | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 RC1 [13 June 2013] | A-200/A-210 RC1 [13 June 2013]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 1 Guest(s)
Thread Closed 
NAS Specs and Speeds
08-27-2009, 06:08 PM
Post: #1
NAS Specs and Speeds
I figured a post about everyone NAS solution and the speed of the array would be a nerdy interesting post.

I figure a hdparm -t /dev/array for linux, and maybe hdtach for the windows users would be good results to post.

So I will start

Chenbro ES34069 Mini-ITX NAS Case
Intel Mini-itx Atom 330 Motherboard
Gigabit Network onboard
CF to SATA Drive adapter for Solid state OS drive 4GB
Promise SATA300 TX4 - 4 Port SATA-II Card
4x 1 TB Samsung Spinpoint F1 7200rpm drives
OpenFiler as OS
Array is RAID5 with 64K chunk size

Quick Speed Test of the Array:
Code:
[root@raid5 ~]# hdparm -t /dev/md0
/dev/md0:
Timing buffered disk reads:  284 MB in  3.01 seconds =  94.34 MB/sec

What does everyone else have? (I know what halfelite has, so im gonna be completly shamed by his awesome setup)
Visit this user's website Find all posts by this user
08-27-2009, 06:14 PM (This post was last modified: 08-27-2009 06:24 PM by tux99.)
Post: #2
RE: NAS Specs and Speeds
Antec Sonata case
Gigabyte MA770-UD3 mobo, AMD 4850e dual-core cpu
4x1TB WD GP drives (5400 rpm)
1x160GB old IDE Maxtor hdd for OS
Mandriva Linux

Code:
hdparm -t /dev/md1
/dev/md1:
Timing buffered disk reads:  610 MB in  3.01 seconds = 202.96 MB/sec

Alterac, I think your Raid is not well setup, it should be faster than that...
Edit: actually I know why it's that slow, you have all 4 drives hanging off the PCI bus instead of PCI-e, why don't you use the onboard SATA connectors? If you move at least two drives onto the onboard SATA connectors it will be a lot faster!

>>> LinuxTECH.NET <<<
Find all posts by this user
08-27-2009, 06:19 PM
Post: #3
RE: NAS Specs and Speeds
Lundmans "lraid5" NAS project based on Opensolaris ZFS:
# time dd if=/dev/zero of=/data/bigfile4 bs=64k count=10000
-rw-r--r-- 1 root root 6.1G Aug 1 17:34 bigfile4
real 0m18.391s
347.02 MB/s


Big Grin

Audio, video, disco - I hear, I see, I learn.
Wiki. Wiki? Wiki!
Find all posts by this user
08-27-2009, 06:23 PM
Post: #4
RE: NAS Specs and Speeds
(08-27-2009 06:19 PM)dc11ab Wrote:  Lundmans "lraid5" NAS project based on Opensolaris ZFS:
# time dd if=/dev/zero of=/data/bigfile4 bs=64k count=10000
-rw-r--r-- 1 root root 6.1G Aug 1 17:34 bigfile4
real 0m18.391s
347.02 MB/s


Big Grin

There you are measuring the filesystem speed, that's not comparable to hdparm -t which measures the raw device speed!
(although I suspect it will still be very fast)

>>> LinuxTECH.NET <<<
Find all posts by this user
08-27-2009, 06:26 PM
Post: #5
RE: NAS Specs and Speeds
True, and there are some iozone test results available at his project's homepage too, fwiw.

Audio, video, disco - I hear, I see, I learn.
Wiki. Wiki? Wiki!
Find all posts by this user
08-27-2009, 06:45 PM
Post: #6
RE: NAS Specs and Speeds
(08-27-2009 06:14 PM)tux99 Wrote:  Alterac, I think your Raid is not well setup, it should be faster than that...
Edit: actually I know why it's that slow, you have all 4 drives hanging off the PCI bus instead of PCI-e, why don't you use the onboard SATA connectors? If you move at least two drives onto the onboard SATA connectors it will be a lot faster!

Yea, my drives are on a PCI controller and not the onboard connectors (only have 2 onboard connectors, with 1 free) even tho theoreticaly the card and pci bus could run at 66mhz, i think its locked at 33.

I would like to upgrade the board eventually to something with 4 (or more) onboard sata, and pci-e bus, but still have the low power of the atom board.
Visit this user's website Find all posts by this user
08-27-2009, 06:59 PM (This post was last modified: 08-27-2009 07:02 PM by tux99.)
Post: #7
RE: NAS Specs and Speeds
(08-27-2009 06:45 PM)Alterac Wrote:  Yea, my drives are on a PCI controller and not the onboard connectors (only have 2 onboard connectors, with 1 free) even tho theoreticaly the card and pci bus could run at 66mhz, i think its locked at 33.

I would like to upgrade the board eventually to something with 4 (or more) onboard sata, and pci-e bus, but still have the low power of the atom board.

Then move at least one drive to on-board, you will likely already notice a speed increase, the PCI bus can only handle 132MB/s (theoretical maximum across all PCI devices, including on board stuff using the PCI bus) so it's a big bottle-neck on your system. With Linux raid moving a disk to another connector is plug-n-play, no need to reconfigure anything (as long as you have used a wildcard DEVICE config in /etc/mdadm.conf).
With your 7200rpm drives you should achieve a higher throughput than me, as my WD GP drives are 'only' 5400rpm (but they are more than fast enough for a media server).

>>> LinuxTECH.NET <<<
Find all posts by this user
08-27-2009, 07:22 PM
Post: #8
RE: NAS Specs and Speeds
So that would releive some of the stress on the pci bus, and allow it all to work faster i suppose.

Well i will give it a shot tonight and see what I can break.
Visit this user's website Find all posts by this user
08-27-2009, 07:27 PM (This post was last modified: 08-27-2009 07:28 PM by tux99.)
Post: #9
RE: NAS Specs and Speeds
(08-27-2009 07:22 PM)Alterac Wrote:  So that would releive some of the stress on the pci bus, and allow it all to work faster i suppose.

Well i will give it a shot tonight and see what I can break.

Just comment out the mount point from /etc/fstab before rebooting, to be safe, but you shouldn't experience any problems. I originally build my raid on a different mobo and also with a PCI SATA card for 2 of the drives and it transferred across to the new mobo (and all on-board SATA) without any issues.

>>> LinuxTECH.NET <<<
Find all posts by this user
08-27-2009, 08:25 PM
Post: #10
RE: NAS Specs and Speeds
my turn my turn
Code:
hdparm -t /dev/sda1

/dev/sda1:
Timing buffered disk reads:  990 MB in  3.00 seconds = 329.98 MB/sec

Running an areca ARC-1130 PCI-X SATA II card. With the battery backup unit. To enable write ahead access. And 2 gigs of cache to help with that write head. Right now its running With 8 seagate 1tb drives.

Motherboard is a cheap $40 buck msi board running intel core 2. Also with 2gig of ram. and gigabit nic ports. The linux os is housed on a separate drive running off the mobo sata.
Find all posts by this user
Thread Closed 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Unable to connect to NFS shared on Synology NAS STiMPY 0 469 05-19-2013 10:25 PM
Last Post: STiMPY
  Amazon nas sale.. accident 0 377 05-17-2013 02:58 AM
Last Post: accident
  just a quick question for a NAS Markitch 2 525 04-22-2013 09:36 AM
Last Post: Markitch
  Need Help on Netwok Share of the A400 to my NAS zigtiu 6 1,077 04-19-2013 03:44 AM
Last Post: figment222
  NAS outside network Chakabear13 7 951 04-18-2013 12:34 PM
Last Post: Willem53
  NAS and Popcorn hussain 4 814 04-08-2013 02:33 PM
Last Post: wgstarks
Information NAS setup, anything to look out for ? divine 4 720 04-03-2013 05:35 PM
Last Post: chris57
  Network Basics - DHCP & Static IP/Synology NAS Setup chris57 11 22,407 03-09-2013 07:15 PM
Last Post: wilfried
Sad NAS disconnects after PC is locked for a time CriticalErrorHasOccured 0 429 03-07-2013 04:53 AM
Last Post: CriticalErrorHasOccured
  Internet Radio from Synology Nas to PCH A-400 with no luck (: Pitch 0 796 02-14-2013 05:41 PM
Last Post: Pitch

Forum Jump: