- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LVM Striping and Mirroring
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
05-14-2001 12:48 AM
05-14-2001 12:48 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2001 02:08 AM
05-14-2001 02:08 AM
Re: LVM Striping and Mirroring
There is no need for you to do LVM stripping on a RAID system.
You acn do LVM mirroring is the disk space available.
http://www.hp.com/cposupport/manindex/hpsurestor19162_eng_man.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2001 02:08 AM
05-14-2001 02:08 AM
Re: LVM Striping and Mirroring
It certainly is possible. You need to use the -D distributed option on lvcreate (along with -i and -I to set the stripe size to 32k)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2001 02:44 AM
05-14-2001 02:44 AM
Re: LVM Striping and Mirroring
You can mirror and strip with "extent-based mirrored strips". A good discussion can acutally be found in the man pages for 'lvcreate'. You can adjust the extent size on the disk during the 'pvcreate' if you wish. 'lvcreate's distributed allocation policy is incompatible with the striped scheduling policy ('-i stripes'). A detailed example appears at the end of the 'lvcreate' man pages.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2001 04:16 AM
05-14-2001 04:16 AM
Re: LVM Striping and Mirroring
As James and the man pages for lvcreate state, the distributed allocation policy -D is incompatible with striped scheduling -i. Thus Stefans lvcreate -D -i -I 32K is not supported. Can I ask whether the striped scheduling can be used with the -m option for mirror copies. Thus the command would be somnething like:
lvcreate -m2 -i4 -I 32K /dev/xyz
Would this give me a mirroed set of disks stripped at 32K over 4 disks ?
I would like to know the answer because when we have used the Distributed allocation with the smallest of a 1Mb physical extent. Subsequent performances tests show alot of write disk activity which would be aided by a smaller stripe width.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2001 04:36 AM
05-14-2001 04:36 AM
SolutionSorry, my mistake. The -D distributed option does allow striping and mirroring, but only at the extent size - which at a minimum can be 1 MB, no smaller. The -i option supports right down to 4k, but you cant use this with LVM mirroring, or extent-based manual striping (in James' reply).
So your options are;
1. Purchase and install VxVM (instead of LVM/JFS). This does allow what you want - it even allows software based RAID (no hardware needed!).
2. Use a 1MB minmum stripe size
3. Use the -i stripe size down to 4k but no mirroring - any disk protection will have to be done at the hardware level (Autoraid, EMC, XP256, Nike etc.)
HP use 1MB extent based striping and mirroring on all their internal Openmail servers and the performance is brilliant - we tried no lvm mirroring and striping down to < 1 MB but found no noticeable improvement. We use lots of buffer cache and our external disk arrays have lots of cache which we weighted towards writes (not reads) - so this offset and writing degradation with using 1MB stripes as you suggested with your application.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2001 04:52 AM
05-14-2001 04:52 AM
Re: LVM Striping and Mirroring
With regard to the Veritas Volume Manager (VxVM), if you haven't taken a look at this document, you might want to do so:
"VERITAS Volume Manager 3.1 Migration Guide"
http://docs.hp.com/hpux/onlinedocs/B7961-90001/B7961-90001.html
...JRF...