- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Page Fault Rate
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
03-25-2003 07:53 AM
03-25-2003 07:53 AM
Page Fault Rate
We have a HP-UX 11.0 system showing following characteristics :
Page Faults ( Cummulative ) : 70.4
Page Ins ( Cummulative ) : 40.6
Do the above figure indicate a problem ?
thanks
oradba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 08:04 AM
03-25-2003 08:04 AM
Re: Page Fault Rate
If these are just a count, it depends on when the counting started.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 08:06 AM
03-25-2003 08:06 AM
Re: Page Fault Rate
I would rename the 'page fault' to 'page miss' as people often get alarmed with the term fault.
page fault happens when a process tries to access code that is not yet mapped into memory. Then the system will page-in and get the pages.
You would need to be worried if you see any abnormal values in "po" column in 'vmstat'. Also, you would see a non-zero figure in the "KB Used" column of your "swapinfo " command for the device swaps. And both the above are indications of memory issues only when you have 95% or more memory utliization.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 08:18 AM
03-25-2003 08:18 AM
Re: Page Fault Rate
Don't worry about it but look for po in vmstat. This indicates a process was swapped out before completing its time slice.
Page outs are nowadays a mostly non-existent and rarely if ever seen problem because of the increased sizes in physical memory. In fact, it???s probably more common to have too much physical memory which is apt to cause system fragmentation with poorly tune kernel parameters. Monitor your sar -v outputs for some indication of this:
sar -v 5 5
???and note that you have a problem when the numerator and denominators become equal, or, the numerator is only about 10-15% of the denominator.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 11:20 PM
03-25-2003 11:20 PM
Re: Page Fault Rate
A better indicator would be pageouts, but on HP systems should only be considered if memory usage is > 97%(see glance), there may also be a case to reduce the size of the filesystem buffer cache (normally defaults to 50% unless tuned via kernel param dbc_max_pct)which should be at most 300-500Mb.
The clearest indicator would be swapouts/sec (deactivations/reactivations). Any significant indication of swapouts would indicate either memory needs tuning, if poss, or more memory is required to manage the workload on the system.
Hope this has answered your query.
AndyZ