Sponsored Content
Full Discussion: Excessive Page INs
Operating Systems AIX Excessive Page INs Post 100570 by Garry_Garrett on Tuesday 28th of February 2006 01:17:39 PM
Old 02-28-2006
Gee, normally you see complaints about excessive page-outs. My background is more in Solaris, where there isn't the distinction between "paging space" and "swap space" that AIX makes, so take this with a grain of salt.

The rule of thumb is that paging space should be 2x RAM. Disk space is cheap, RAM is more expensive. If paging space is more than 2x RAM, performance will be poor (if you start using all that virtual memory). You could have a smaller paging space than RAM, say 1x RAM, but as disk is cheap, most people just mindlessly setup 2x RAM and be done with it. If you need more virtual memory, you need more RAM, becuase simply adding more paging space is just going to make performance bad.

Does that help?
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

ins mod error on eth0

hello, I am getting an insmod error on my pcmcia lan card. upon boot, it gives me the insmod error and says that it might be an irq setting or an io setting. because of this error, the eth0 interface is obviously not working. how do i check for irq conflicts or troubleshoot this. thank you. (1 Reply)
Discussion started by: alam
1 Replies

2. UNIX for Advanced & Expert Users

Excessive Paging&Swapping!

Hi all! Working on Oracle v8i/9i on Unix Sun Solaris v8.0. I am experiencing excessive paging & Swapping.Would like to know the cause. I guess:could be due to inappropriate setting of Unix Kernel Parameters... Please correct me if I am wrong! Thanks&Regards, Amit. (5 Replies)
Discussion started by: Amitstora
5 Replies

3. UNIX for Dummies Questions & Answers

excessive IOWAIT

i have a server constantly have high iowait, but i am not able to tell which process generate the most of io. none commands, such as iostat, sar, top will give me this kind of information. hope there is some command can help me to spot the process generate the most of io let to know input... (1 Reply)
Discussion started by: giantpanda77
1 Replies

4. UNIX for Dummies Questions & Answers

Running Built-ins in current shell

Hi, Can any one please describe why I am not able to run any built-in commands in current shell? Thanks. (5 Replies)
Discussion started by: siba.s.nayak
5 Replies

5. AIX

Excessive interrupt disablement time

Has anyone seen this error before? On the IBM website they suggest updating to AIX 6.1.0.0 TL2, but we are already at that level. Any help or suggestions are appreciated! Thanks! />errpt -a --------------------------------------------------------------------------- LABEL: ... (2 Replies)
Discussion started by: troym72
2 Replies

6. Solaris

Sol10 + OpenLDAP = excessive logging & full file system??!!

Hello all, new to this forum (member of many others). Hopefully I can find help here. SERVER: Brand new server Oracle Enterprise SPARC T4-1 Loaded Solaris SPARC 10 u10, patched to 147440-27 Loaded OpenLDAP v2.4.30 Loaded Berkley DB 4.7.25.NC Loaded OpenSSL 1.0.1c Note: All packages are... (2 Replies)
Discussion started by: Wraith_G2IC
2 Replies

7. AIX

Excessive Kernel CPU Usage

Good Morning All, I've been a long time lurker but this if my first time posting. About 6 months ago I started a new job with an AIX box. I had administered many Debian and Red Hat variant systems before, but this was my first AIX. It is an old box (Power4) that runs our ERP. It had been... (2 Replies)
Discussion started by: Jacoby0419
2 Replies

8. HP-UX

FDX303??? SSL Excessive Message Size???

I'm hoping someone has seen this before because I'm trying to use an old custom program to automate uploading bank files. The odd thing is the program works with JP Chase old sFTP site but not on this new one? I appreciate any and all assistance I have about a month to figure this out... ... (3 Replies)
Discussion started by: prophyt
3 Replies
MINCORE(2)						      BSD System Calls Manual							MINCORE(2)

NAME
mincore -- determine residency of memory pages SYNOPSIS
#include <sys/types.h> #include <sys/mman.h> int mincore(caddr_t addr, size_t len, char *vec); DESCRIPTION
The mincore() system call allows a process to obtain information about whether pages are core resident. The current core residency of the pages is returned in the character array vec. For each entry in the character array vec, the following bit values may be set depending upon the state of the page: MINCORE_INCORE 0x1 /* Page is incore */ MINCORE_REFERENCED 0x2 /* Page has been referenced by us */ MINCORE_MODIFIED 0x4 /* Page has been modified by us */ MINCORE_REFERENCED_OTHER 0x8 /* Page has been referenced */ MINCORE_MODIFIED_OTHER 0x10 /* Page has been modified */ RETURN VALUES
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error. ERRORS
[EINVAL] addr is not a valid address for user mode. [EFAULT] an error occurred trying to copy to the output character array vec. SEE ALSO
madvise(2), minherit(2), mlock(2), mprotect(2), msync(2), munmap(2) HISTORY
The mincore() function first appeared in 4.4BSD. BSD
June 9, 1993 BSD
All times are GMT -4. The time now is 11:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy