|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Solaris The Solaris Operating System, usually known simply as Solaris, is a Unix-based operating system introduced by Sun Microsystems. The Solaris OS is now owned by Oracle. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
System performance
Hi I need to know the system performance : Code:
# echo "::memstat" | mdb -k Page Summary Pages MB %Tot ------------ ---------------- ---------------- ---- Kernel 358022 2797 9% ZFS File Data 2427072 18961 59% Anon 1096938 8569 27% Exec and libs 12020 93 0% Page cache 73859 577 2% Free (cachelist) 52250 408 1% Free (freelist) 81544 637 2% Total 4101705 32044 Physical 4070935 31804 i have 32 G of RAM , please i need if my system is still ok or No? BR// |
| Sponsored Links | ||
|
|
#2
|
||||
|
||||
|
Check output of
vmstat 1 . If you see high values in "sr" and "fr" columns, then you are facing memory shortage.
|
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
What you are seeing is most likely file system caching. Solaris considers unused memory a waste, so it parks (caches) data read from files or written to files in memory because it improves performance. The kernel will release file caches anytime there is a need for more memory. Code:
Kernel 358022 2797 9% ZFS File Data 2427072 18961 59% Anon 1096938 8569 27% Exec and libs 12020 93 0% Page cache 73859 577 2% Free (cachelist) 52250 408 1% Free (freelist) 81544 637 2% Total 4101705 32044 Physical 4070935 31804 Last edited by jim mcnamara; 12-18-2012 at 10:36 AM.. |
|
#4
|
|||
|
|||
|
Quote:
Quote:
Last edited by jlliagre; 12-18-2012 at 06:52 PM.. |
| Sponsored Links | |
|
|
#5
|
|||
|
|||
|
Your can see "vmstat 1 5" output to determine the system performance. ZFS will use physical memory as ARC cache unless until it used by application. When application needs more memory ,ZFS will release the cache automatically. So you really no need to worry about that. From the below output,you just need to monitor r,b,w columns and sr column (scan rate).If these values quite more,then your system performance is degraded Code:
bash-3.00# vmstat 1 5 kthr memory page disk faults cpu r b w swap free re mf pi po fr de sr f0 s0 s1 s2 in sy cs us sy id 0 0 32 955436 35360 56 151 1 1 2 0 143 -0 4 0 0 486 666 340 1 2 97 0 0 29 688464 24576 1 42 3 0 0 0 0 0 6 0 0 602 719 347 1 1 98 0 0 29 688384 24544 580 672 0 0 0 0 0 0 0 0 0 589 767 312 0 4 95 1 0 29 688384 24544 8 8 0 0 0 0 0 0 0 0 0 550 597 326 0 0 100 0 0 29 688384 24544 242 709 0 0 0 0 0 0 0 0 0 610 20194 377 2 4 94 bash-3.00# |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| system performance | maxim42 | HP-UX | 2 | 08-08-2010 03:23 PM |
| How to predict system performance? | aixlover | Solaris | 6 | 05-30-2009 03:04 PM |
| How I can get System Performance on Solaris | Yagami | Solaris | 5 | 05-14-2009 10:42 PM |
| system performance | Frank2004 | Linux | 5 | 12-18-2007 10:34 PM |
| Script for system performance | vastare | Shell Programming and Scripting | 2 | 01-19-2006 10:51 AM |
|
|