Solaris Mem Consumption


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris Mem Consumption
# 22  
Old 08-25-2008
Your issue is possibly with Vxfs which indeed allocate kernel memory for its file cache. There have been some memory leak issues with Vxfs on Solaris 10 so first make sure your are up to date with Solaris 10 and Vxfs patches.

The equivalent Linux free on Solaris is "mdb -k". It shows 3% of the RAM is used by the file cache (free - cachelist). However, only UFS is using that cache. Vxfs (and ZFS for that matters) both directly use kernel memory.

A high number of page outs aren't a correct metric to identify RAM shortage on Solaris. It might just shows there is a lot of I/Os on your system. Better to watch vmstat sr column (scan rate). If it stays low of null, your system is behaving correctly. Unused RAM is wasted RAM anyway.
# 23  
Old 08-25-2008
Let me try vmstat before and after running additional prgrams and i will paste the output here.. thanks
# 24  
Old 08-25-2008
Here u go :


sr
15
0
0
0
0
0
0
0
0
0
0 -- before

_____________
After running new process
__________
737
1005
5875
18380
53504
14042
91957

sr
18596
34646
69300
37315
679

This is only SR ourput of vmstat
# 25  
Old 08-25-2008
What is this process that you're running, and how much memory does it need?
# 26  
Old 08-25-2008
Well prrocess that i am running is not that memory intensive .. If u see the post from the start .. the story is that more then 82 % of my RAM is consumed weather i run some applcation or not by the kernel itself ... as per mdb -k
# 27  
Old 08-26-2008
Your system is definitely RAM bounded and not by some application as you just wrote but either by the kernel itself (unlikely) or by a kernel module (likely Vxfs).

When was the server last rebooted ? It might be a memory leak. Did you check the patches ?
# 28  
Old 08-27-2008
Quote:
Originally Posted by rajwinder
#netstat -kp | grep pp_kernel
For me there is no option as - k in netstat on solaris 10
The Solaris 10 equivalent is kstat -p unix:0:system_pagesSmiliep_kernel. (That's colon-p, not a sticky-outy-tongue-smiley) Smilie

What is the output of ps -eo pid,rss,vsz,args | sort -rn -k 3,3 | head -20?

What is the output of ipcs -m?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Mem Details

<A href="mailto:root@sssdpmds01$"> root@sssdpmds01$ prstat -a PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP 13831 ogw 2613M 2108M cpu12 0 0 277:43:27 3.9% java/1201 4312 ogw 2641M 2092M sleep 59 0 562:45:51 2.1% java/1235 4469 ogw ... (2 Replies)
Discussion started by: jojo123
2 Replies

2. Emergency UNIX and Linux Support

Can top show more than 100% in %MEM?

Can the %MEM value for a process show more than 100% in top output?Is this ever possible? (5 Replies)
Discussion started by: proactiveaditya
5 Replies

3. UNIX Desktop Questions & Answers

Regarding Memory Consumption

Hi All I am new to UNIX ,can any one please help in finding MEMORY CONSUMPTION of VLC when i use it as Streaming Server. I need to log the memory consumption for atleast 10 hours. Can any one help me in finding this Please (1 Reply)
Discussion started by: ravikanth17
1 Replies

4. Solaris

How to check power consumption of Solaris servers ?

hi friends, we are relocating our DC and need to plan out electrical power for the new DC. are there ways i could find the actual power consumption from my current servers ? instead of the product specs. (2 Replies)
Discussion started by: Exposure
2 Replies

5. Shell Programming and Scripting

Determining User Consumption in solaris

Inorder to find the user memory consumption I used the command: prstat -s cpu -a -n 10 But now I want to automate it and want to write the output to a file. How can I write the out put of user name and percentage of consumption alone to an output file.? (2 Replies)
Discussion started by: engineer
2 Replies

6. AIX

consumption memory

Hi, I have a problem with memory on AIX 5.3. On this server, we have JDE Edwards (ERP) and Oracle Database (9.2.0.7.0). We have 4 Gb for physical memory and 3 Gb for paging space. When I stop all services (JDE, Oracle and all other services), the physical memory is not free (4 Gb) svmon... (9 Replies)
Discussion started by: tagger
9 Replies

7. Solaris

Coredumps and swap - was part of Solaris Mem Consumption

We have Sun OS running on spark : SunOS ciniwnpr67 5.10 Generic_118833-24 sun4u sparc SUNW,Sun-Fire-V440 Having Physical RAM : Sol10box # prtconf | grep Mem Memory size: 8192 Megabytes My Top Output is : 130 processes: 129 sleeping, 1 on cpu CPU states: 98.8% idle, 0.2% user, 1.0%... (39 Replies)
Discussion started by: rajwinder
39 Replies

8. Linux

Linux Mem Usage

What is amount of free RAM i have now? total used free shared buffers cached Mem: 1010 963 46 0 215 256 -/+ buffers/cache: 491 518 Swap: 1983 0 1983 Above is the output of... (1 Reply)
Discussion started by: new2ss
1 Replies

9. UNIX for Advanced & Expert Users

CPU consumption

Hello experts, I am writing an application in Solaris, which is supposed to work on PrimePower 650 and SunFire 440 machines. The application listens to the events raised by the Hardware and OS in /dev/log. The application listens to the messages logged into /dev/log and do some processing on... (3 Replies)
Discussion started by: pleaseteachmeun
3 Replies

10. UNIX for Dummies Questions & Answers

Difference in Mem usage ?

Hi All, I have a pair of sun ultra 5_10 with SunOS 5.5.1. Both are almost equally patched and set up with simillar applications. host# uname -a SunOS host 5.5.1 Generic_103640-24 sun4u sparc SUNW,Ultra-5_10 Even though both have same amount of RAM ( 512 Mb ) , ... (1 Reply)
Discussion started by: shibz
1 Replies
Login or Register to Ask a Question