- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Curious LVM items...
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
07-18-2002 07:29 AM
07-18-2002 07:29 AM
First, the box came from hp with a 36GB vg00. The PE size was 8MB. Is there a reason that I would want to use this over a 4MB PE? I can't find any hard evidence that either size is better.
Second, I ran a script to create another bootable copy of vg00 modifying the PE size to 4MB. Rebooted off the new disk, then re-ran the script to destroy vg00 and create it with a 4MB PE size. Then rebooted off of vg00. I then ran my make_tape_recovery with inc_entire=vg00 and restored of the ignite tape. My PE size is back to 8MB. What gives?
Thanks in advance,
Craig
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 07:42 AM
07-18-2002 07:42 AM
Re: Curious LVM items...
it can make sense to take a bigger size for PEs if you have large volume groups. Normally, the max. number of PEs per volume is limited to 1024, which means 4 GB per volume. You either have to increase the max PE number or the PE size or both values when creating a Volume Group. Another reason to chose a big PE size could be an application, for example a big database. They just love big PE sizes.
No idea, what causes your old VG to appear again, sorry.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 07:51 AM
07-18-2002 07:51 AM
Re: Curious LVM items...
http://us-support3.external.hp.com/emse/bin/doc.pl/sid=ba3c936011ba85985c?todo=search&searchcategory=ALL&rn=100&presort=rank&searchtext=KBRC00009036&searchcriteria=allwords&searchtype=SEARCH_TECH_DOCS&x=60&y=6
2)Check (KBRC00008114), that might explain your 2nd question.
http://us-support3.external.hp.com/emse/bin/doc.pl/sid=71c1e0731479720f2a?todo=search&searchcategory=ALL&rn=100&presort=rank&searchtext=KBRC00008114&searchcriteria=allwords&searchtype=SEARCH_TECH_DOCS&x=61&y=7
Hope they'll help answer your questions ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 07:59 AM
07-18-2002 07:59 AM
SolutionThe 8MB extent size is fixed with 36GB disk. Do a 'pvdisplay /dev/dsk/cXtydZ' and you will see.
This has obvious impact when you are creating logical volumes and are expecting rounding to 4MB extents. For instance, if you use the Advanced Installion feature of Ignite recovery in a disaster recovery site and don't realize that your 4/9/18 GB vg00 from "home" is now a 36GB disk and you attempt to size a logical volume (filesystem) that is not a multiple of 8MB (the extent size), you will find that Ignite resizes it to a multiple of 8MB as it should! However, the first time you see it, you may think your "nuts"! :-))
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 08:00 AM
07-18-2002 08:00 AM
Re: Curious LVM items...
vgcreate takes the size of the first disk to determine the value of PE.
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 10:37 AM
07-18-2002 10:37 AM
Re: Curious LVM items...
Note: The maximum number of physical extents is settable *only* when you create the volume group, so if you think you might extend a volume group in the future, then increase max-pe and the extent-size to cover the largest volume size you might ever have.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 11:04 AM
07-18-2002 11:04 AM
Re: Curious LVM items...
To add to Bill's commentary, given that the maximum number of physical extents that can be allocated from any of the physical volume is 65535 ('max_pe'); and the 'max_pe' size is 256MB; we find that the largest disk supported by these criteria alone, would be:
(256 * 65535) = 16,776,960
...or about 16,383 GB...rather large!
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2002 11:15 AM
07-18-2002 11:15 AM
Re: Curious LVM items...
Craig