![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tuning | naresh.sun | SUN Solaris | 4 | 05-21-2008 01:25 AM |
| Tuning AIX IO | theerthan | UNIX for Advanced & Expert Users | 1 | 04-06-2008 09:12 AM |
| lpr- how to print from page to page | naamas03 | Shell Programming and Scripting | 4 | 12-26-2007 06:30 AM |
| SAS Tuning | alex blanco | UNIX for Advanced & Expert Users | 1 | 07-10-2007 12:08 PM |
| Tuning Unix server memory - HPUX11i | thierryUX | UNIX for Dummies Questions & Answers | 5 | 05-31-2006 01:17 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
TUNING: memory page sizes
This is post number 3 in a series of unanswered "TUNING" questions.
![]() With AIX 5.3 TL4, the page size can vary from the original "4k". They can now be "64k" and a couple other sizes. They also do not have to all be the same. Some can remain "4k" while others are "64k" which is what seems to be going on in my system. Does anyone know of any advantages to moving from 4k sized pages to 64k sized pages? With my server having about 13 gig of memory, I think this can only help, right? It's an oracle database server. You can see the size of your pages in memory with this command: Code:
vmstat -wp all (w = wide) Code:
$ vmstat -wp all
System configuration: lcpu=8 mem=13312MB ent=3.00
kthr memory page faults cpu
------- --------------------- ------------------------------------ ------------------ -----------------------
r b avm fre re pi po fr sr cy in sy cs us sy id wa pc ec
3 2 2018514 7263 0 3 4 1668 8218 0 2054 26300 7043 7 1 83 9 0.27 9.0
psz avm fre re pi po fr sr cy siz
4K 1906306 3967 0 3 4 1668 8218 0 3232134
64K 7013 206 0 0 0 0 0 0 6805
|
|
||||
|
Large pages will help applications like Oracle in saving a lot of cpu time by reading / writing large pages instead of the smaller 4K pages , I think the pricess is called lrud which will save lots of cpu. I remember when we did it in the past, We designed the Oracle SGA to use all large pages and pinned. Please note that large pages does not support paging.
Yes, we did leave the rest of the memory [ Total - SGA ] in 4Ks. As IBM documented it can have serious impact to other applications if the page size is more than 4K. So we will need sufficient memory. And make sure that all the large pages are allocated for the application which is capable of using it. Dont leave any large pages free. They must be pinned in the memory [ no paging ]. If you are talking about oracle, then I will implement large pages on a server which is dedicated for Oracle DB. Nothing else. If that is a webserver cum apps server and something else , I will not do that. The reason being complexity is designing and then maintaining. Regards, Kaps |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|