- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Pageouts while free memory is avaible
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
12-01-2003 12:13 AM
12-01-2003 12:13 AM
Pageouts while free memory is avaible
Attached document is the memory report from glance. Why current & cumulative page out > 0 even though 476MB is free.
Thanks
John Jayaseelan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 12:30 AM
12-01-2003 12:30 AM
Re: Pageouts while free memory is avaible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 12:37 AM
12-01-2003 12:37 AM
Re: Pageouts while free memory is avaible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 01:08 AM
12-01-2003 01:08 AM
Re: Pageouts while free memory is avaible
you have page faults when you are trying to access a page not already in memory, - > increment pages in and page faults
you have pages out when the file is written back to the disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 01:16 AM
12-01-2003 01:16 AM
Re: Pageouts while free memory is avaible
#include
#include
#include
#include
main()
{
char *baseaddr;
int j;
int *current;
int fd;
fd=open("test",O_RDWR|O_CREAT,0666);
ftruncate(fd,31457280);
current=baseaddr=mmap(0,31457280,PROT_READ|PROT_WRITE,MAP_PRIVATE,fd,0);
printf("%x\n",current);
for(j=0;j<31457280;j+=4096)
{
*baseaddr=j;
baseaddr+=4096;
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 01:17 AM
12-01-2003 01:17 AM
Re: Pageouts while free memory is avaible
On HP-ux 11.0 "paged out" can include memory mapped stuff on the vxfs filesystem due to it being a good idea at the time to page to disk.
On 11i, it is memory constraints that cause page outs.
So, is it 11.0?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 01:35 AM
12-01-2003 01:35 AM
Re: Pageouts while free memory is avaible
The O/S is HP-UX B.11.00. So you mean to say these pageouts is not going to be performance problem.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 01:10 PM
12-01-2003 01:10 PM
Re: Pageouts while free memory is avaible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 03:03 PM
12-01-2003 03:03 PM
Re: Pageouts while free memory is avaible
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2003 12:22 AM
12-03-2003 12:22 AM
Re: Pageouts while free memory is avaible
Is it possible to confirm by any means that the "paged out" are due to memory mapped stuff on the vxfs file system. Are these 'Page out' pages are 'Page in' later or not at all used?
Also swapinfo does not show any increase in the swap usage during these 'Page out'.
Thanks