- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- which one is faster RAID-1 or RAID-5 ?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 04:37 AM
02-17-2006 04:37 AM
which one is best for /var, /usr, /opt, and /home... Raid 1 or 5 ?
which one is best for /var/log... Raid 1 or 5 ?
which one is best for /var/log/maillog... Raid 1 or 5 ?
Regards
Maaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 04:39 AM
02-17-2006 04:39 AM
Re: which one is faster RAID-1 or RAID-5 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 06:38 AM
02-17-2006 06:38 AM
SolutionFor the above mentioned files, it makes no difference at all. Those files are sequential access writes and are not edited or changed like a database.
On strictly performance database, Raid 1 is going to complete its writes faster than Raid 5, becuase physically the data needs to be written into more places Raid 5.
Any write intensive environment is going to get a performanc boost from Raid 1. The above mentioned files are simply not going to benefit that much.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2006 06:41 AM
02-17-2006 06:41 AM
Re: which one is faster RAID-1 or RAID-5 ?
On a modern storage controller with writeback cache there is often no big difference, so this is rather a cost/ maintanance decision.
- a RAID-1/RAID-0 set requires more disks than a RAID-5 set of equivalent size, so is less cost-effective
- a multiple-disk RAID-5 can provide better read performance than a 2-disk RAID-1
- a set of striped mirrors is easier to rebuild, because it only has to deal with two disks, while a RAID-5 rebuild often requires reading from all disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2006 05:13 AM
02-18-2006 05:13 AM
Re: which one is faster RAID-1 or RAID-5 ?
by the way, SEP which filesystems do u recommend to be RAID 1/5 ?
and is it possible to create 'Raid 1+5' ?
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2006 09:08 AM
02-18-2006 09:08 AM
Re: which one is faster RAID-1 or RAID-5 ?
EXT3 is also an excellant choice, very stable.
1+5? Striping over mirrored pairs? It's not really an efficient way of using the available disk space, but if you're willing to use disks in such a manner, then there's things like raid 15 and 51.
http://www.pcguide.com/ref/hdd/perf/raid/levels/mult.htm
There's a decent discussion about the different netsted RAID levels here.
I'd suggest you look closer at raid 10 however, more efficient use of space, with good throughput.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2006 07:06 PM
02-18-2006 07:06 PM
Re: which one is faster RAID-1 or RAID-5 ?
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2006 12:26 AM
02-19-2006 12:26 AM
Re: which one is faster RAID-1 or RAID-5 ?
Typically, /var, /usr, /opt, /home, and even /var/log/ will be either very random read/writes or such small block I/O that your RAID controller (assuming you're using hardware RAID) will not really be able to recognise their I/O as sequential.
So, RAID-1 is probably your best choice; RAID-10 would be better.
This is because RAID-5 is slower at small-block random writes.
However, I believe that RAID-5 provides a very good cost/performance balance, so it will typically be a good choice for most systems. If you really have a need for speed, the cost of a few more disks for use in a RAID-10 is worth the extra $$.
Good luck,
Vince
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2006 02:34 PM
02-19-2006 02:34 PM
Re: which one is faster RAID-1 or RAID-5 ?
Journaled fielsystems are best able to recover from sudden system halts.
I don't mix Raid 1 and 5 by choice. I think that gives the worst of both worlds. Raid 10, wish is two mirror copies on top of striping, gives good performance but if I have my choice, I'd prefer two copies on two disks, preferably two controllers.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2006 02:23 AM
02-21-2006 02:23 AM
Re: which one is faster RAID-1 or RAID-5 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2006 02:24 AM
02-21-2006 02:24 AM
Re: which one is faster RAID-1 or RAID-5 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2006 02:30 AM
02-21-2006 02:30 AM
Re: which one is faster RAID-1 or RAID-5 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2006 02:39 AM
02-21-2006 02:39 AM
Re: which one is faster RAID-1 or RAID-5 ?
I personally don't see that writeback will make any difference in comparing Raid solutions where it will be either on in all solutions or off in all solutions (if you have it on in 1 solution and off in the competing solution, then shame on you :) ). In any case, I wouldn't enable writeback in any kind of mission critical I/O solution anyway.
Back to the original poster -- at least for /home, speed better not be the highest concern -- redundancy must be, or you'll have plenty of mad users. For /var/log, why bother having redundancy? That would be like doing daily backups of /tmp.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2006 05:18 AM
02-22-2006 05:18 AM