Capturing computational/non computational memory from topas


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Capturing computational/non computational memory from topas
# 1  
Old 02-20-2014
Capturing computational/non computational memory from topas

Hi Friends,

How to capture the value of %Comp and %Noncomp values from AIX using topas command. I tried lot, but i cannot capture the value.
# 2  
Old 02-22-2014
I think you are using the wrong tool. Instead of topas run "vmstat" and use the "numperm%".

I hope this helps.

bakunin
# 3  
Old 02-23-2014
Dear Bakunin,

Thanks for your reply.

Topas is performance monitoring tool in AIX, so that i ask you how to capture the % Comp and % noncomp from topas command.
From topas command output, i can see % Comp is 70% and % Noncomp is 20%.
But numperm% of vmstat is 21.3.
The values are differ.

numperm% denotes what (computational mem/non computational memory)

Kindly advice.
# 4  
Old 02-25-2014
Quote:
Originally Posted by Nowshath
Topas is performance monitoring tool in AIX, so that i ask you how to capture the % Comp and % noncomp from topas command.
Yes, but "topas" is designed for interactive use only. If you want to skim the values from some output stream you should use "vmstat" rather than "topas" because "vmstat"s output is a character stream whereas "topas"s output is full of control characters necessary for the screen control.

First: what is computational and non-computational memory? Memory is allocated controlled by some "vmo" (see "man vmo") tunables: "minperm%", "maxperm%", "minclient", "maxclient", "lrud_file_repage", ... Basically the AIX kernel tries to put otherwise unused memory to some use dedicating some part (the tunables control how big this part is) of it to the file cache. "Computational memory" is the part of the memory in use given to running processes. "Non-Computational memory" is the memory used for file cache (and a few other buffers of minor significance). Together, computational and non-computational memory is "used memory".

"minperm%" and "maxperm%" control when and under which circumsteances non-computational memory is changed to computational memory and vice versa (which is done by the lrud-daemon), "numperm%" tells you, where - in between minperm and maxperm - you are right now.

After this rather lengthy explanations, here is a sample output of "vmstat -v" (AIX 7.1, idle system):

Code:
# vmstat -v 
             15073280 memory pages
             12080419 lruable pages
             13429620 free pages
                    3 memory pools
               850498 pinned pages
                 95.0 maxpin percentage
                  3.0 minperm percentage
                 90.0 maxperm percentage
                  4.4 numperm percentage
               536202 file pages
                  0.0 compressed percentage
                    0 compressed pages
                  4.4 numclient percentage
                 90.0 maxclient percentage
               536202 client pages
                    0 remote pageouts scheduled
                    5 pending disk I/Os blocked with no pbuf
                    0 paging space I/Os blocked with no psbuf
                 1972 filesystem I/Os blocked with no fsbuf
                    0 client filesystem I/Os blocked with no fsbuf
                    0 external pager filesystem I/Os blocked with no fsbuf
                  7.3 percentage of memory used for computational pages

I have marked the relevant lines bold: numperm percentage is the (%) amount of memory currently used by the file cache. Compare this to the number of totally allocated pages and you get the sizes of computational and non-computational memory. Note, that some numbers are percentages, some numbers are memory pages! Memory pages can be various sizes in AIX, but the most common are 4k. So, for instance, "2500" is roughly 10M.

I hope this helps.

bakunin
# 5  
Old 02-25-2014
Thanks for your great explanation.

Thank you so much
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script for %computational memory & % non computational memory

Dear, How to calculate %computational memory and %non computational memory from AIX server. What command used to find out %computational memory and % non computational memory except topas. Regards Nowshath (1 Reply)
Discussion started by: Nowshath
1 Replies

2. AIX

How to use topas to display its Memory section alone

Hi, I'm planning to write a script to monitor the memory utilization and so decided to use topas. i'm not familiar with this command Could anyone help me with an idea on how to display the Memory section alone in the topas... :) It will be very helpful if you could specify the command... (2 Replies)
Discussion started by: kaushik_87
2 Replies

3. AIX

topas - computational memory 95% : Any Impact?

Hello Gurus, I am using AIX 5 and on running topas command. I can see the computational memory is 93.3% with Swap Paging memory at 2.2%. Could you please advise if there is any impact by the growth of computational memory? Below is the stat: MEMORY Real,MB 22528 % Comp 93.3 %... (12 Replies)
Discussion started by: panchpan
12 Replies

4. Emergency UNIX and Linux Support

Appending the contents of two files in computational manner

Hi, I have two files say file 1 file 2 File1 1 2 4 5 File 2 asdf adf How to get the ouput something like asdf1 adf1 asdf2 adf2 asdf4 adf4 asdf5 (5 Replies)
Discussion started by: ecearund
5 Replies

5. Cybersecurity

Computational complexity

This is a general question about the practical use of computational complexity in security. Wikipedia has a good article about the theoretical background of computational complexity. In the course of conversation with colleagues, a topic that is brought up occassionally is the security of any... (2 Replies)
Discussion started by: gratuitous_arp
2 Replies

6. UNIX for Advanced & Expert Users

Need Help installing a Computational Tool Kit

Hi ! I have been trying to install IMSL Computational Tool Kit on a server. It is a Lunix Redhat V.4 with Intel pentium d processor and Intel fortran compiler 8.1 and the type of command shell we run is bash. I dont know if the problem is with the Installation or the Lunix system. I have... (1 Reply)
Discussion started by: dsmv
1 Replies

7. AIX

Memory usage statistic? (topas, nmon)

hi, how can i diplay: - the ammount RAM used /free - ammount of ram used from a pid or prozess we have the problem, that malloc is returing a NULL pointer errno = 12 ( not enough space). but i think there is still ram free. nmon : shows all memory used ? Memory Use Physical Virtual... (7 Replies)
Discussion started by: Lazzar
7 Replies
Login or Register to Ask a Question