- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- What size should the PE size be?
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
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
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
тАО10-28-2002 02:57 PM
тАО10-28-2002 02:57 PM
We have a A500 with a DS2405(DiskArray) with 6 72Gbyte drives on each side of the split-bus setup.
We will be running oracle on this LVM configuration.
Any guidance in this area would be GREAT!
TIA.
Regards,
Tony Escujuri
escujuri@wellsfargo.com
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-28-2002 03:17 PM
тАО10-28-2002 03:17 PM
Re: What size should the PE size be?
DOCID=KBRC00009035
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062909770
From the doc, I've calculated that in your case (total of 6x72GB=432GB) you would want to set your max PE to 212MB. I may be wrong, please double check.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-28-2002 03:26 PM
тАО10-28-2002 03:26 PM
Re: What size should the PE size be?
"..you would want to set your max PE to 212MB"
should be
"..you would want to set your PE size to 212MB"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-28-2002 03:27 PM
тАО10-28-2002 03:27 PM
Re: What size should the PE size be?
If i would have been in your place, i would go for a PE size of 4 Mb.
Regards,
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-28-2002 03:27 PM
тАО10-28-2002 03:27 PM
SolutionTed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-28-2002 03:37 PM
тАО10-28-2002 03:37 PM
Re: What size should the PE size be?
Powers of 2 are (1, 2, 4, 8, etc.) Smallest extent size it 1Mbyte.
Thank you all for your replies.
Regards,
Tony Escujuri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-28-2002 07:15 PM
тАО10-28-2002 07:15 PM
Re: What size should the PE size be?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2002 10:12 AM
тАО10-29-2002 10:12 AM
Re: What size should the PE size be?
since there are limits on how many PEs you can have, and how big the PVRA and the VGRA can be, you simply have to use PE sizes of more than 4MB with today's disk drives (and LUNs)!
So I usually go for a "vgcreate" like this:
vgcreate -l 32 -p 24 -s 64 -e 4096 /dev/vg...
Which would enable you to use:
-l 32 # up to 32 LVOLs in that VG
-p 24 # up to 24 disk drives in that VG
-s 64 # PEsize of 64MB each
-e 4096 # disks of up to 256GB can be added later
Remember that you will have to substitute a broken disk sooner or later - will you be able to buy another 72GB drive within the lifetime of that disk array? Or could it be the smallest drive you could get then would be 100GB at least?
FWIW,
Wodisch