4x SSD Raid 0 Same Speed as 1x SSD


Go to solution Solved by JorgeB,

Recommended Posts

  • Solution

hdparm only tests a device, not a pool, you can for example copy a large file to the pool then read it back with pv:

 

single device pool:

pv /mnt/cache/10.mkv > /dev/null
17.9GiB 0:00:38 [ 481MiB/s]

 

three device raid0 pool:

pv /mnt/temp/10.mkv > /dev/null
17.9GiB 0:00:14 [1.27GiB/s]

 

Note that this is an actual file read, so never as fast a synthetic benchmark but also gives more real world values, you can also test write speed by making the destination the pool and the source a fast device or a RAM disk.

 

Make sure the file is not cached to RAM after the first test, depending on the filesystem used an array re-start may suffice, in doubt do it after a fresh reboot.

Link to comment
22 hours ago, JorgeB said:

hdparm only tests a device, not a pool, you can for example copy a large file to the pool then read it back with pv:

 

single device pool:

pv /mnt/cache/10.mkv > /dev/null
17.9GiB 0:00:38 [ 481MiB/s]

 

three device raid0 pool:

pv /mnt/temp/10.mkv > /dev/null
17.9GiB 0:00:14 [1.27GiB/s]

 

Note that this is an actual file read, so never as fast a synthetic benchmark but also gives more real world values, you can also test write speed by making the destination the pool and the source a fast device or a RAM disk.

 

Make sure the file is not cached to RAM after the first test, depending on the filesystem used an array re-start may suffice, in doubt do it after a fresh reboot.

Everyday learning something new :) 

 

Thank you

 

Edited by mouzzampk
  • Like 1
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.