- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Hard Page Faults...
Operating System - OpenVMS
1819681
Members
3571
Online
109605
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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-17-2004 09:03 PM
тАО06-17-2004 09:03 PM
Hard Page Faults...
Hi
When i do a show system or if i do a show process this show's me the total number of page faults for this process.This is fine but is there any way of finding out how many of these are hard page faults and what this process is doing when the hard faults are occuring???
Peter
When i do a show system or if i do a show process this show's me the total number of page faults for this process.This is fine but is there any way of finding out how many of these are hard page faults and what this process is doing when the hard faults are occuring???
Peter
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 09:52 PM
тАО06-17-2004 09:52 PM
Re: Hard Page Faults...
To my knowledge :
. not with lexicals
. not with show commands
. not with sda show commands
So leaves complicated sda (for the experts with a pointy hat) and performance advisor.
"Monitor page" can report you the hardfaults too (read I/O) and much more.
Wim
. not with lexicals
. not with show commands
. not with sda show commands
So leaves complicated sda (for the experts with a pointy hat) and performance advisor.
"Monitor page" can report you the hardfaults too (read I/O) and much more.
Wim
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 10:13 PM
тАО06-17-2004 10:13 PM
Re: Hard Page Faults...
I think you'll need MONITOR to distinguish between hard- and softfaults.
To find which process is involved most, you'll need to record and analyze afterwards, or have several (not too many) sessions running different MONITOR classes.
MONITOR SYSTEM shows a little bar in the MEMORY display, that gives the percentage of hard faults (left) en soft faults (right).
MONITOR PROCESSS/TOPFAULT will show you the top-faulting process - that includes hard AND soft faults.
MONITOR PAGE gives you the over-all view, with a distinction of hard and softfaults.
I think you will not find a direct relation between a process and hard faults. The swapper process takes care of hard faults, not the process.
Willem
To find which process is involved most, you'll need to record and analyze afterwards, or have several (not too many) sessions running different MONITOR classes.
MONITOR SYSTEM shows a little bar in the MEMORY display, that gives the percentage of hard faults (left) en soft faults (right).
MONITOR PROCESSS/TOPFAULT will show you the top-faulting process - that includes hard AND soft faults.
MONITOR PAGE gives you the over-all view, with a distinction of hard and softfaults.
I think you will not find a direct relation between a process and hard faults. The swapper process takes care of hard faults, not the process.
Willem
Willem Grooters
OpenVMS Developer & System Manager
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2004 07:16 AM
тАО06-18-2004 07:16 AM
Re: Hard Page Faults...
> This is fine but is there any way of
> finding out how many of these are hard page
> faults?
SDA can do it for a given process. The location is at PHD + phd$l_pgfltio.
For example using a pid of 000003d3
$ analaze/system
SDA> set process/index=3d3
SDA> sho proc
SDA> exa phd + phd$l_pgfltio
Repeat the last SDA command and you'll see it increment if hard faults are occuring for a given process. Time the hard faults and you'll have a process's hard fault rate.
> what this process is doing when the hard
> faults are occuring?
To what level of detail?
For starters, setup two additional terminal sessions.
For the second terminal sessions (keep the one above so the fault rate is easy to access), go into SDA and so the following:
$ analaze/system
SDA> set process/index=3d3
SDA> sho proc/chan
You'll see what files are open.
In a third terminal session, do a show process.
$ show process/contin/id=3d3
Between these three terminal sessions, you'll get some idea of what is going on. And if you can use the PC from the show process and you have the source code, you'll be able to draw some conclusions, well, hopefully anyway. :-)
Keep in mind that when an image begins execution, it has to pagefault which includes some number of hardfaults. These are what I call good hard faults; of course too many hard faults and they are bad ones.
Figuring out what hard faults are good and when they become bad is whole 'nother topic. ;-)
enjoy,
john
> finding out how many of these are hard page
> faults?
SDA can do it for a given process. The location is at PHD + phd$l_pgfltio.
For example using a pid of 000003d3
$ analaze/system
SDA> set process/index=3d3
SDA> sho proc
SDA> exa phd + phd$l_pgfltio
Repeat the last SDA command and you'll see it increment if hard faults are occuring for a given process. Time the hard faults and you'll have a process's hard fault rate.
> what this process is doing when the hard
> faults are occuring?
To what level of detail?
For starters, setup two additional terminal sessions.
For the second terminal sessions (keep the one above so the fault rate is easy to access), go into SDA and so the following:
$ analaze/system
SDA> set process/index=3d3
SDA> sho proc/chan
You'll see what files are open.
In a third terminal session, do a show process.
$ show process/contin/id=3d3
Between these three terminal sessions, you'll get some idea of what is going on. And if you can use the PC from the show process and you have the source code, you'll be able to draw some conclusions, well, hopefully anyway. :-)
Keep in mind that when an image begins execution, it has to pagefault which includes some number of hardfaults. These are what I call good hard faults; of course too many hard faults and they are bad ones.
Figuring out what hard faults are good and when they become bad is whole 'nother topic. ;-)
enjoy,
john
It is better to STQ then LDQ
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP