- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How should I config striping of 32 disks?
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-24-2005 05:43 PM
01-24-2005 05:43 PM
How should I config striping of 32 disks?
hpux:11.11
disk:EMC 13G*32LUN
fc card*6
application:oracle 9i
customer will use lvol for db file system.
I will create vg01 with 32LUN and make 4 lvols with 104G.
I think 8LUN are needed for 1 lvol.
Customer wants striping to improve performance.
What is the best way to stripe?
(stripes(-i) and stripe size(-I)?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2005 06:33 PM
01-24-2005 06:33 PM
Re: How should I config striping of 32 disks?
I would create the VG first with the first 8 LUNS, then use lvcreate -L {LVOL_SIZE} -i 8 -I {STRIPE_SIZE} /dev/{VG_NAME}. Your LVOL_SIZE will be the total of [LUN physical extents * VG physical extent size] for all 8 LUNS added together (get your calculator out!). STRIPE_SIZE is dictated by Oracle. I seem to remember 64 being adequate.
Then add the next 8 LUNS, repeat the lvcreate etc.
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2005 06:48 PM
01-24-2005 06:48 PM
Re: How should I config striping of 32 disks?
Create the VG with the 8 LUNS.
Do 'vgdisplay -v /dev/{VG_NAME}'
Make a note of "PE Size (MBytes)" and "Total PE" for each listed Physical volume (LUN).
Multiply these 2 figures, note the answer.
Do that for each LUN.
Add all 8 answers together.
Use the final figure in the lvcreate:
lvcreate -L {FINAL_FIGURE} -i 8 -I 64 /dev/{VGNAME}
Good luck! Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2005 08:05 PM
01-24-2005 08:05 PM
Re: How should I config striping of 32 disks?
We have similar setup but with HP storage instead. We are using Veritas Volume Manager3.5. Here we have created volumes using a strip size of 4096 & 32 Columns. This is also used for production DB Server. The LUN size is also 13 GB only. But we are using Oracle 8i alongwith SAP R/3.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2005 08:27 PM
01-24-2005 08:27 PM
Re: How should I config striping of 32 disks?
A pity not 36 LUNs, or can you get that extra?
Why?
Having 6 FC HBAs it would have been for best load balancing to stripe across the 6 (or multiple) and of course the best would be having at each time disks from different arrays (6 disks per array)X 6 or (3 /array)X12 etc...
My 2 cents
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2005 11:06 PM
01-24-2005 11:06 PM
Re: How should I config striping of 32 disks?
This avoids you to think about striping on which disks for which lvol and leaves you after your 4 lvols created with 50 GB spare to finely extend to need.
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2005 12:39 AM
01-25-2005 12:39 AM
Re: How should I config striping of 32 disks?
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2005 01:40 AM
01-25-2005 01:40 AM
Re: How should I config striping of 32 disks?
Do you *really* want to put *all* 32 LUNs in a single VG?
EVEN if this is for Oracle DB space, there's NO rule that says they have to all be in the same VG.
I've had HW and SW problems that have whacked an entire VG. I'd hate to have to wait for 416 GB to restore from tape.
My $0.02,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2005 02:09 AM
01-25-2005 02:09 AM
Re: How should I config striping of 32 disks?
But like you I got once a few fs corruption with file systems of > 100GB and restoration is terribly long compared to smaller sized...
All the best
Victor