- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Physical extent size.
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
тАО12-04-2008 03:38 AM
тАО12-04-2008 03:38 AM
Dear Friends,
how to assign the phyical extent size.
Pls any one guide me step by step.
Regards,
Unixguy.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2008 03:47 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2008 03:47 AM
тАО12-04-2008 03:47 AM
Re: Physical extent size.
vgcreate -s (pesize) -e (maximum pe per pv) vgname physical volumes
example
vgcreate -s 4 -e 65530 /dev/vgo1 /dev/dsk/c1t0d1
thank u
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2008 04:56 AM
тАО12-04-2008 04:56 AM
Re: Physical extent size.
what's the differnece?
it means why we are giving like that,best we give to same size to all Physical extent.
Pls anyone help me.
Regards,
Unixguy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2008 05:21 AM
тАО12-04-2008 05:21 AM
Re: Physical extent size.
PE size is same for all the physical extends in a volume group.
PE is the smallest size of the disk size can be allotted to logical volumes.
When you add a new disk to the LVM the total space of the disk will be divided into multiple PE's. Later on these PE's will be alloted(mapped) to logical volumes.
minimum PE size is 4MB and the maximum is 256MB. PE size is multiple of 4's.
There are some application like oracle may need big PE size for fast write operations.In that case we may need to specify big PE size when create the volume group.
Hope this helps
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2008 05:41 AM
тАО12-04-2008 05:41 AM
Re: Physical extent size.
Hi Ganesan,Saravan,
Thanks a lot........
I closed this call.
Regards,
Unixguy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2008 05:56 AM
тАО12-04-2008 05:56 AM
Re: Physical extent size.
5 x 256 MB = 1.25 GB, too small
6 x 256 MB = 1.5 GB, a bit too big... but usually that is not a problem.
Smaller PE size allows more precise disk allocation. Larger PE size allows larger PV sizes, leading to larger VG maximum size.
At the VG creation time, you define PE size, Max PE per PV and Max PV parameters for the VG. These will set a hard limit to the maximum size of your VG.
With older versions of HP-UX, the only supported way to change these parameters was to destroy and re-create the VG.
Newer HP-UX releases contain a "vgmodify" command which may allow you to modify some of these values without destroying the VG. (It has certain limitations: read the man page before using it.)
For example: if you're setting up a data VG that will be contained in an external storage box of 8 SCSI disks, find out the size of the largest-capacity disk you can use in the box.
Choose the PE size so that
(size of largest disk) / (PE size)
is less than the absolute maximum number of PE per PV = 65535 extents.
MK