- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Problems with performance!
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 08:48 PM
11-22-2004 08:48 PM
at the moment we run an application using API requests, the processes take memory without release it!!!!... until the all memory is occupied.
we have a UNIX 11.0 - oracle -
in attachement you find some output info:
sysdef
swapinfo -a
top
Can I change some kernel param to solve the problem??
any suggestions??
thanks for help
L.F.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 09:01 PM
11-22-2004 09:01 PM
SolutionIf the process is taking memory without releasing it later, then it's called memory leak unless the process really needs it. You will need to work with the developers/vendors to get it fixed. To confirm the issue run
UNIX95= ps -e -o 'vsz pid args' |sort -n
periodically and observe the processes whose vsz values are gradually increasing.
Your total swap utilization (swapinfo -t) is around 52% which is enough. You also have 1.3GB of free memory available. Your CPU usage is very low when you ran your top. Since you have configured static buffer cache of around 600MB, you should be alright in that area also.
Only issue is with your timeslice value which is 1. I suggest you set it back to 10 which is the default value. Other than that I don't see any issues with your configuration.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 09:06 PM
11-22-2004 09:06 PM
Re: Problems with performance!
Look at
ftp://eh:spear9@hprc.external.hp.com/memory.htm
Good info and tools
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 10:52 PM
11-22-2004 10:52 PM
Re: Problems with performance!
interesting stuff!
Now I need to launch the command
UNIX95=1 ps....
when we do some test... we should notice something strange when we get the problem...
just a question...
but the sz has to 1/4 of the vsz?
thanks again
L.F.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 12:24 AM
11-23-2004 12:24 AM
Re: Problems with performance!
sz is size in pages and vsz is the same size in KB. As a page is 4KB...
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 12:30 AM
11-23-2004 12:30 AM
Re: Problems with performance!
Note also that using all of memory is not necessarily a bad thing...unless the memory is not being used efficiently. Your swapinfo shows that not all memory is used and no swap space is used. When your memory is full, quiet processes will be rolled out to the swap area. Use the command:
swapinfo -tm
to see your total virtual memory. You probably have dbc_max_pct set to 50 in the kernel. Change that number to approximately 400-600 megs--note that dbc_max_pct is percentage of total RAM so you'll have to calculate the percentage value.
Bill Hassell, sysadmin