Paging without Scanning


 
Thread Tools Search this Thread
Operating Systems Solaris Paging without Scanning
# 1  
Old 09-13-2005
Paging without Scanning

Trying to reach a formula on Solaris 9 for calculating the Memory utilization percentage, i have encountered a lot of indicators and metrices, however i have faced a case today which confused me.

How to get a Zero Scan Rate along an hour whilst the Paging activity (Pages IN & Pages Out) are not Zero ?

Kindly if any one have an explanation for the case above or any other assist regarding the issue of Balancing the Scan Rate value along with Percentage of utilized Memory to reach the overall memory utilization.
# 2  
Old 09-13-2005
Programs are started with no pages mapped and then page fault themselves into memory. This means that only the portions or a program that are used actually consume memory. That has been going on for a very long time and it means that page-ins are normal.

Memory mapped files allow a process to map a datafile into the process memory. By moving stuff into this region, a file write is implied and this results in a page-out. If the file was also in the buffer cache, the cache would need to be updated. Solaris no longer uses the buffer cache except for meta-data. Data is loaded into pages as needed in a unified manner. If scan rate is zero, you are not out of free memory. Page-ins and page-outs will happen a lot.
# 3  
Old 09-14-2005
Scan Rate - The only indicator.

Thanks for your meaty reply.

However i need to conclude, does the Scan Rate ONLY is an adequate indicator for the Physical Memory utilization ?
And if so, how can i scale this Scan Rate value (pages/sec) to reflect into a percentage reflecting the utilization ?
# 4  
Old 09-14-2005
Non-zero scan rate indicates that the system needs physical memory. It is the number of pages that the system looked at to find pages it can swap out. I do not understand your scale question.
# 5  
Old 09-14-2005
I mean that in order to reach a fixed figure representing the (Utilization Percentage of the Memory), i have to differentiate between Scan Rate value if it is 10 pages/sec, 100 pages/sec and 100 pages/sec, each value will represent different level of utilization.
I know that he non-zero value means the need of more physical Memory, but still diffrent values means different levels of utilization.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

Dm devices not created while scanning

Hello, I have Red Hat 5.7 running on HP hardware box. All file systems (except root) are in LVM. I have to create a new file-system and Storage team allocated 8 luns to this server. I scanned them on OS level with below command for x in {0..9}; do echo '- - -' > /sys/class/scsi_host/host$x/scan;... (0 Replies)
Discussion started by: solaris_1977
0 Replies

2. UNIX for Dummies Questions & Answers

scanning the file for a particular column

I have a file containing 4 columns. need to scan that file, if all the rows in the column4 have a value ZERO, it should print "everything is fine". And if all are not ZERO , at the first encounter of non ZERO value of 4th column it should print "some problem " may be a silly question, but at... (11 Replies)
Discussion started by: gotam
11 Replies

3. UNIX for Advanced & Expert Users

find application that are scanning the network

Hi, I got a alert from network security that one of hpux server is running tcp port scan on the network, this server is running informix server and i am not aware of any application that is scanning the network. what are ways to findout the which application and user is doing the scan? (1 Reply)
Discussion started by: robertngo
1 Replies

4. Solaris

virus scanning options?

we have a mjial server running on solaris 9. we have about 10K attachment a day that we need to scan for virus type things. in the past we have been using Mcafee. problem is that since the new 5.10 version we find it is running too slow. the question is what AV products are can run on... (0 Replies)
Discussion started by: robsonde
0 Replies

5. UNIX for Advanced & Expert Users

Scanning file backwards

Is there any way to look for a directory path that is listed any number of lines *before* a keyword in an error message? I have a script that is trying to process different files that are always down a certain portion of a path, and if there is an error, then says there is an error, contact... (2 Replies)
Discussion started by: tekster757
2 Replies

6. Shell Programming and Scripting

scanning for '0' value in .txt file

Hello I am a novice shell scripting programmer, so please bare with me. I have embedded a simple SQL statement into a shell script, which simply returns an integer (its a count (*) statement). The result of the statement is then oputput to .txt file. So, the number could be 0, 1,2, 10,... (4 Replies)
Discussion started by: man80
4 Replies

7. UNIX for Dummies Questions & Answers

scanning empty directories

Hi, I want to produce a text file representing a list of empty directories on a unix system starting from a specified directory. I hope I explained well my problem. Thanks in advance. (7 Replies)
Discussion started by: N065956BM
7 Replies

8. UNIX for Dummies Questions & Answers

-Computer hangs when scanning ports-

Hi everyone, I 've just installed Mandrake Linux v8.0 and everything worked fine untill, i think after having booted from Windows 2000, my computer 'hangs' at the pixelated pinguin startup screen and displays something like: Winbond Super Something Now scanning ports: 3f0 2f8 320 110 ... (3 Replies)
Discussion started by: Phaelanx
3 Replies
Login or Register to Ask a Question