- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- PE and LE
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
06-15-2006 08:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:16 PM
06-15-2006 08:16 PM
Re: PE and LE
PE physical extend
Physical volume is broken into PE
LE Logical extend
Logical extend is a pointer to a physical extend on disk
regards
L-DERLYN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:16 PM
06-15-2006 08:16 PM
Re: PE and LE
PE are the physical extends on the disks, logical extends are "virtual" extends. The system is accessing the LEs, almost no matter where the associated PEs are. So you can create LVOls spreading several disks, but the LVOL looks like a whole disk.
Not sure if this is a good explanation.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:19 PM
06-15-2006 08:19 PM
Re: PE and LE
Actually PE is Physical extents of the disk.By default it will be 4 MB.
Diff PE & LE
PE --- Physical for the entire disk starts from 0000 to xxxx to the end of the disk
LE --- Logical extents for each logical volume starts from 0000 to xxxx upto the space which u allocated for eahc LV
Cheers
Arunkumar.B
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:21 PM
06-15-2006 08:21 PM
SolutionThe smallest allocatable unit of space in LVM is known as an "Extent." A physical volume is
broken into "Physical Extents" (PEs), which are made available for allocation when the
physical volume is added to a volume group.
A logical volume consists of a series of sequentially numbered "Logical Extents" (LEs). Each
logical extent is nothing more than a pointer to a physical extent on disk. Larger logical
volumes have more logical extents, and smaller logical volumes have fewer logical extents. In
order to make a logical volume larger, LVM needs only allocate some additional extents.
The PE and LE sizes are consistent throughout a volume group, and may be set when the
volume group is initially created. The default extent size is 4 MB.
Hope this helps...
Regards,
Sanjeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:21 PM
06-15-2006 08:21 PM
Re: PE and LE
http://en.wikipedia.org/wiki/Logical_volume_management
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:21 PM
06-15-2006 08:21 PM
Re: PE and LE
# vgdisplay -v vg00 | grep -i "pe size"
PE Size (Mbytes) 4
# lvdisplay -v /dev/vg00/lvol4
LV Name /dev/vg00/lvol4
VG Name /dev/vg00
LV Permission read/write
LV Status available/syncd
Mirror copies 1
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 1200
Current LE 300 <---
Allocated PE 600 <---
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default
--- Distribution of logical volume ---
PV Name LE on PV PE on PV
/dev/dsk/c1t2d0 300 300 <-
/dev/dsk/c2t2d0 300 300 <-
LE = logical extend
PE = Physical extend
in above example current LE size is 300 * 4MB = 1200 MB, PE size is 600 * 4MB = 2400MB. 2400MB Because this logical volume is mirrored. 300 PE on disk C1t2d0 and 300 PE on disk c2t2d0.
HTH,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 08:34 PM
06-15-2006 08:34 PM
Re: PE and LE
You must be knowing that a VG consists of physical volumes (actual disks or LUNs) or PVs.
The smallest allocatable block of a disk is called an physical extent.
Now sine LVM presents to you logical volumes - meaning logically you have grouped a set of blocks and call it as a logical volume. These blocks in the logical volume need to be mapped to actual physical blocks. This exactly is the LE (Logical extents) and PE (Physical extents).
Thus the LE in a volume will map to PE on disks.
So say 100 LEs which form a volume can be mapped to say 50 PEs from disk1 , 30 PEs from disk2 and 20 PEs from disk3 - as per your configuration or available space from disks if using default configuration.
Also hope you are clear with the strict and distributed concepts by now.
Do let know if you still have doubts.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 09:32 PM
06-15-2006 09:32 PM
Re: PE and LE
thanks for ur gr8 ans.
Regarding strict and distributed concept I am not so much confident.
I just know with strinct allocation policy mirror copies should be n two disks..
But have no idea regarding distributed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 09:39 PM
06-15-2006 09:39 PM
Re: PE and LE
Here is all , you are looking for :
http://www.1402.com/documents/Logical%20Volume%20Manager.pdf
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2006 10:49 PM
06-15-2006 10:49 PM
Re: PE and LE
You must assign points to all the responses, who tried to help you,
You forum profile says:
"I have assigned points to 3 of 40 responses to my questions. "
[ try to make it 40 of 40 ]
Also You can go through this link to know the details:
http://66.34.90.71/ITRCForumEtiquette/
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadID=140137
cheers,
Raj.
(* 0 point pls.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2006 01:16 AM
06-16-2006 01:16 AM