- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Logical Volume Striping
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
01-11-2002 12:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:31 PM
01-11-2002 12:31 PM
Re: Logical Volume Striping
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:37 PM
01-11-2002 12:37 PM
Re: Logical Volume Striping
Generally disk striping can increase the performance of applications that read and write large, sequentially accessed files. Data access is performed over the multiple disks simultaneously, resulting in a decreased amount of required time as compared to the same operation on a single disk. If all of the striped disks have their own controllers, each can process data simultaneously.
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:39 PM
01-11-2002 12:39 PM
Re: Logical Volume Striping
This guide will give you a complete information about the benefits/drawbacks of LVM striping:
http://www.docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90672/B2355-90672_top.html&con=/hpux/onlinedocs/B2355-90672/00/00/76-con.html&toc=/hpux/onlinedocs/B2355-90672/00/00/76-toc.html&searchterms=LVM%7cstriping&queryid=20020111-124055
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:42 PM
01-11-2002 12:42 PM
Re: Logical Volume Striping
There should be no overhead. Ultimately, every I/O must be mapped to a physical address so this matters little from that perspective.
There are two ways to stripe, or spread data across physical volumes in a volume group -- striping and distributed extents. Have a look at the man pages for 'lvcreate'. The choices are mutually exclusive. True striping gives finer granularity and for small I/O's may offer better distribution accross a large number of disks than distributed extents.
The use of distributed extents, however, allows the creation of both mirrored and "stripped" sets otherwise *not easily* achieved with the standard stripe methods (although this can be finessed).
The above comments apply to standard LVM. With VxVM, instead, *both* stiping and mirroring are supported "naturally".
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 01:37 PM
01-11-2002 01:37 PM
Re: Logical Volume Striping
The basic answer to any question related to performance is "it depends". And
"if you are not getting any complaints from the end users, then your system is outperforming and you don't need to touch it".
Striping does offer performance gains. But it depends on the environment you have and the disk subsystem.
If your application does a lot of sequential IOs, then striping will definitely help you and you should consider looking at it. Random IOs gain a very little from the striping. So, you may not want to do striping if your system does a lot of random IO.
Reads benifit largely from mirroring than striping but on the contrary writes suffer. So, you wouldn't be doing mirroing.
And if you have disk subsystems with their own caches, then again the stripe size determines the performance. Sometimes striping may decrease the performance. You need to check with your vendor.
-Sri