Doubt on free command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Doubt on free command
# 1  
Old 10-13-2009
Doubt on free command

All,

I have doubts related to free command in Linux.
My environment is RHEL5 - 64 bit OS
We have 2 node RAC database installed

Query output from node 1 is

Free -g

Total used free shared buffers cached
Mem: 32 25 7 0 5 15
-/+ buffers/cache: 4 27
Swap: 30 0 30

Query output from node 2 is

Free -g

Total used free shared buffers cached
Mem: 32 6 17 0 1 1
-/+ buffers/cache: 4 27
Swap: 30 0 30



We have Oracle database hosted on this server. We are in doubt that actual memory used is 25 GB or 4 GB. Performance team is telling that database is over utilizing the memory of 25 GB. But DB team is telling that actual memory utilization is 4 GB and remaining 20+ GB is used by buffers / cached.

I have googled it and noticed that 25 GB is summation of 4+5+15 (close to 25). I referred Linux material and it says that memory in buffers and cached will improve the performance.

1.Can somebody explain whether actual memory used is 4 GB or 25 GB?
2.What is the use of buffers and cached?
3.Sometimes used value is peaking close to 31 GB from 25 GB. Mostly occupied by buffers and cached.
4.At a particular moment, -/+ buffers/cache: will be same. But Mem used will be more in node 1 and less in node 2. After particular hours, the Mem used will be shifting from node 1 to node 2. i.e., in node 1, Mem used will be 6 GB and Mem used in node 2 will be 25 GB approximately. Any body have any idea about this behaviour?
# 2  
Old 10-14-2009
Quote:
Originally Posted by user7509
All,

I have doubts related to free command in Linux.
My environment is RHEL5 – 64 bit OS
We have 2 node RAC database installed

Query output from node 1 is

Free –g

Total used free shared buffers cached
Mem: 32 25 7 0 5 15
-/+ buffers/cache: 4 27
Swap: 30 0 30

Query output from node 2 is

Free –g

Total used free shared buffers cached
Mem: 32 6 17 0 1 1
-/+ buffers/cache: 4 27
Swap: 30 0 30



We have Oracle database hosted on this server. We are in doubt that actual memory used is 25 GB or 4 GB. Performance team is telling that database is over utilizing the memory of 25 GB. But DB team is telling that actual memory utilization is 4 GB and remaining 20+ GB is used by buffers / cached.

I have googled it and noticed that 25 GB is summation of 4+5+15 (close to 25). I referred Linux material and it says that memory in buffers and cached will improve the performance.

1.Can somebody explain whether actual memory used is 4 GB or 25 GB?
2.What is the use of buffers and cached?
3.Sometimes used value is peaking close to 31 GB from 25 GB. Mostly occupied by buffers and cached.
4.At a particular moment, -/+ buffers/cache: will be same. But Mem used will be more in node 1 and less in node 2. After particular hours, the Mem used will be shifting from node 1 to node 2. i.e., in node 1, Mem used will be 6 GB and Mem used in node 2 will be 25 GB approximately. Any body have any idea about this behaviour?
Hi user7509,

1. On node 1 the actual usage is 25 GiB. But only a small part is in use by Oracle and large parts by probably almost useless filesystem caching.
2. buffers and cached is part of free memory that is being used for buffering an caching. It remains however free memory. The moment it is needed, the most of the buffers and file system cache gets discarded. This cache is not the cache that Oracle uses.
3. See 2.
4. Usually the memory use of the oracle instances are largely determined by the SGA, which is used almost entirely for the database cache. This is shared memory allocation. Do you have single instance databases that sometimes run on one node and sometimes on the other? You can check the allocated chunks of shared memory by running.
Code:
ipcs -ma

as root or by checking the oracle init file.. The owner of the chunks is the oradba user that runs the database.
Filesystem cache will be of almost no use on a RAC cluster. You would probably be better off by enlarging the SGA of your databases so the memory is put to practical use, but no more than is useful of course.

S.

Last edited by Scrutinizer; 10-14-2009 at 07:40 PM..
# 3  
Old 10-19-2009
Scrutinizer,

Your detailed explanation helps me a lot. Thanks
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mailx command doubt

hi all, I would need to add the description in the below syntax. let me know the below syntaxt how it can be changed to add the description in the below. ps -ef | grep "server" | mailx -s "servers currently which are running" operational@acel.com Server 62 -> Used for User acessing.... (14 Replies)
Discussion started by: arun888
14 Replies

2. UNIX for Advanced & Expert Users

Doubt on setserial command

My understanding is that "setserial" command is used to change the attributes of serial device files (ttyS) managed by the linux serial driver(serial module). My doubt is, using setserial command is it possible to change the attributes of other serial device files managed by a different driver... (2 Replies)
Discussion started by: Kesavan
2 Replies

3. UNIX for Dummies Questions & Answers

Doubt in ls command

dear users and experts, i am stuck withis command and i am unable to understand what is it doing?? ls -d * (7 Replies)
Discussion started by: seshank
7 Replies

4. Shell Programming and Scripting

command substitution doubt

Hi, I almost always use back quotes in scripts to assigin output of a command to a variable. eg: file=`basename a/b/c/d/file` year_mon=`date +%Y%m` But the same can be achieved like: file=$(basename a/b/c/d/file) year_mon=$(date +%Y%m) I would like to know if there is... (3 Replies)
Discussion started by: wanderingmind16
3 Replies

5. Shell Programming and Scripting

One doubt regarding chmod command

which one is correct chmod 777 file.txt or chmod 777 / file.txt what is difference in these two commands? thanx in advance (2 Replies)
Discussion started by: Himanshu_soni
2 Replies

6. Shell Programming and Scripting

sed command doubt

i have input files like this SFE_DOC_DATE (SFE_DOC_DATE:UniChar.:): "04/18/20" SFE_PSTNG_DATE (SFE_PSTNG_DATE:UniChar.:): "04/18/20" SFE_CREATEDON (SFE_CREATEDON:UniChar.:): "05/31/20" SFE_CLEAR_DATE (SFE_CLEAR_DATE:UniChar.:): "(NULL)" SFE_CLR_DOC_NO... (3 Replies)
Discussion started by: Gopal_Engg
3 Replies

7. Shell Programming and Scripting

Doubt with ftp command

Hi linux experts, I am using ftp command as : ftp hostname but it says unable to connect, if i am using the same in sftp it is working : sftp hostname it works. so please help me how should i use ftp command. (8 Replies)
Discussion started by: salil2012
8 Replies

8. UNIX for Dummies Questions & Answers

doubt in tr command

Hi, I am trying to understand a script and found a line as follows: tr '\211\233\240' '\040' < $IN_FILE | tr -cd '\11\12\15\40-\176' > $TEMP_FILE Can any one explain the above line .. What are they trying to translate using the tr command.. I have not used tr command.. so feeling little bit... (2 Replies)
Discussion started by: risshanth
2 Replies

9. AIX

doubt in cal command

I am new to unix... How to get all the saturdays of a specific year? for a specific month, i tried as below.. cal 02 2006 | awk '{print $7}' but it is not giving all saturdays.... can anyone help me with this? Thanks in advance, Sumi (9 Replies)
Discussion started by: sumi
9 Replies

10. Shell Programming and Scripting

Doubt in find command

Hi All, I wanted to list all the files in the current directory which contains the pattern "error". I tried the following grep command grep -i 'error' *.* but i got the error message "ksh: /usr/bin/grep: 0403-027 The parameter list is too long." Any idea why the grep didn't work? Note:... (3 Replies)
Discussion started by: mona
3 Replies
Login or Register to Ask a Question