Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
01-26-2006, 03:37 AM
|
#1
|
LQ Newbie
Registered: Jan 2006
Posts: 10
Rep:
|
Memory reporting corrupt?
First, apologies - I posted about this before in the SuSE board, but perhaps it's not a SuSE issue. And it really troubles me.
My system (SuSE 10 amd64, newly installed) seems to report inconsistent data for memory usage. This is what I see in top:
Code:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ SWAP COMMAND
11917 food 15 0 1576m 203m 26m S 14.3 41.0 30:48.23 1.3g java
while free gives me
Code:
total used free shared buffers cached
Mem: 508784 503576 5208 0 23588 98040
-/+ buffers/cache: 381948 126836
Swap: 939760 212892 726868
So, java is using 1.5 GIGAbytes of virtual memory? 200 mb in physical, and 1.3 gigabytes swapped out? This can't be, since I am only using 380 + 212 (physical + swap) mb of ram. Java seems to take up more virtual memory than I have physical+virtual memory in my system...
Also, I see similar things with knotify (virtual memory of over a gigabyte). It isn't just java, but is most pronounced there.
I have read the man pages several times, and googled for help on this. My only conclusion after all of this is that something is corrupt in my system's memory reporting?
|
|
|
01-26-2006, 09:08 AM
|
#2
|
Member
Registered: Sep 2004
Location: Melbourne, Victoria Australia
Distribution: Support those that support you :)
Posts: 872
Rep:
|
Quote:
Originally Posted by kripkenstein
First, apologies - I posted about this before in the SuSE board, but perhaps it's not a SuSE issue. And it really troubles me.
My system (SuSE 10 amd64, newly installed) seems to report inconsistent data for memory usage. This is what I see in top:
Code:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ SWAP COMMAND
11917 food 15 0 1576m 203m 26m S 14.3 41.0 30:48.23 1.3g java
while free gives me
Code:
total used free shared buffers cached
Mem: 508784 503576 5208 0 23588 98040
-/+ buffers/cache: 381948 126836
Swap: 939760 212892 726868
So, java is using 1.5 GIGAbytes of virtual memory? 200 mb in physical, and 1.3 gigabytes swapped out? This can't be, since I am only using 380 + 212 (physical + swap) mb of ram. Java seems to take up more virtual memory than I have physical+virtual memory in my system...
Also, I see similar things with knotify (virtual memory of over a gigabyte). It isn't just java, but is most pronounced there.
I have read the man pages several times, and googled for help on this. My only conclusion after all of this is that something is corrupt in my system's memory reporting?
|
Code:
total used free shared buffers cached
Mem: 508784 503576 5208 0 23588 98040
-/+ buffers/cache: 381948 126836
Swap: 939760 212892 726868
it's a little daunting but its normal.
linux links demanding programs to lots of disk cache in memory which is good.
That cache (over 1gig) is phyisical RAM
its used to reduce Hadr disk reads/writes/fragmentation.
since it is cache though it will quickly go away for other programs to use, hense it is actually really free to use.
that is why you have one free 20MB with
free Cache -+ 1GB
you really have 1GB+20MB free RAM if you need it.
think of it like
Low priority for software to use the CPU.
low means a program can only use the CPU when nothing else is.
DiskCache can use the RAM only if nothing else needs it.
|
|
|
01-26-2006, 09:11 AM
|
#3
|
Member
Registered: Sep 2004
Location: Melbourne, Victoria Australia
Distribution: Support those that support you :)
Posts: 872
Rep:
|
i love the Disk Cache Quirk
i paid a lot of money for 4GB ram and Windows uses 512MB and insists on using 200MB pagefile.
|
|
|
01-26-2006, 11:53 AM
|
#4
|
LQ Newbie
Registered: Jan 2006
Posts: 10
Original Poster
Rep:
|
Thanks carl0ski, but I still don't understand.
I realize Linux is using all my physical RAM as cache, hence just a few megs free physical memory. I am not worried about that. What worries me is that java is reported to use 1.5 Gigabytes of RAM! A single application, that takes more RAM than physical + swap that I have... :-(
|
|
|
01-26-2006, 02:50 PM
|
#5
|
Senior Member
Registered: Jun 2004
Posts: 2,553
Rep:
|
ok the thing is to understand what is virtual memory.
it doesn't have anything to do with physical anything accept proccessor bandwidth.
all 32 bit processors have 4 gigs of virtual memory
that is 2 to the 32nd power distinct values. If you allow each value to address a different byte of memory, you get 2 to the 32nd power bytes, which equals four gigabytes.
so on a 32 bit processor all things get 4 gigs virtual address space.
this is total how many unique values can be in address space that then can point or not sometimes and not to real places in memory or not on a disk or wherever some puter info might be living.
|
|
|
01-26-2006, 03:08 PM
|
#6
|
LQ Newbie
Registered: Jan 2006
Posts: 10
Original Poster
Rep:
|
I really don't understand, I guess.
Please tell me one thing: based on the data I quoted above, is java using 1.5 gigabytes of memory (physical+swap), or not?
If not, then please tell me this: how can I tell how much physical and swap memory java (or any other process) is using? I simply want to know how much physical memory is used by it, and how much of my swap file is used by it.
Thanks in advance.
|
|
|
01-26-2006, 06:01 PM
|
#7
|
Member
Registered: Sep 2004
Location: Melbourne, Victoria Australia
Distribution: Support those that support you :)
Posts: 872
Rep:
|
Quote:
Originally Posted by kripkenstein
Thanks carl0ski, but I still don't understand.
I realize Linux is using all my physical RAM as cache, hence just a few megs free physical memory. I am not worried about that. What worries me is that java is reported to use 1.5 Gigabytes of RAM! A single application, that takes more RAM than physical + swap that I have... :-(
|
my java does it too,
in my case i have azureus leaching Suse
but that is very Hard drive intensive and data going out is frequently tthe same so it is remembered.
it is cleared if i need it.
|
|
|
01-26-2006, 09:45 PM
|
#8
|
Senior Member
Registered: Jun 2004
Posts: 2,553
Rep:
|
Quote:
Originally Posted by kripkenstein
I really don't understand, I guess.
Please tell me one thing: based on the data I quoted above, is java using 1.5 gigabytes of memory (physical+swap), or not?
If not, then please tell me this: how can I tell how much physical and swap memory java (or any other process) is using? I simply want to know how much physical memory is used by it, and how much of my swap file is used by it.
Thanks in advance.
|
well it's extreemly difficult to tell what physical swap is being used. all swap above is total virtual minus RSS. not a representation of actual swap use.
But the number you should be looking at is RES or "resident set size". That's basically stuff in actual physical memory or RESIDENT in physical memory. That would be 203m for your java process.
|
|
|
01-27-2006, 12:51 AM
|
#9
|
LQ Newbie
Registered: Jan 2006
Posts: 10
Original Poster
Rep:
|
So, what you are saying, foo_bar_foo, is that there is NO WAY to know how much of my swap file a process is using?
If that is true, then what is the meaning of the SWAP field appearing in top? It's just garbage?
|
|
|
01-27-2006, 02:08 AM
|
#10
|
Member
Registered: Sep 2004
Location: Melbourne, Victoria Australia
Distribution: Support those that support you :)
Posts: 872
Rep:
|
Quote:
Originally Posted by kripkenstein
So, what you are saying, foo_bar_foo, is that there is NO WAY to know how much of my swap file a process is using?
If that is true, then what is the meaning of the SWAP field appearing in top? It's just garbage?
|
if you use KDE
open Kcontrol
Configure you desktop.
there will be and information tab>
memory
will give you a graphical display to give you a clear veiw of whats going on.
orange is Disk Cache.
P.S i just went back to Mandriva 32bit, it wouldnt detect more than 800MB ram :S
|
|
|
01-27-2006, 03:13 AM
|
#11
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,794
|
By the way, java is using the amount of memory it is allowed to.
Look at the script launching your java application for the -Xms and -Xmx options, and you'll find the initial and maximal amount of virtual memory set.
Like all other userland programs, java only knows about virtual memory, only the kernel deals with physical RAM.
|
|
|
01-27-2006, 03:34 AM
|
#12
|
LQ Newbie
Registered: Aug 2005
Posts: 14
Rep:
|
Quote:
Originally Posted by kripkenstein
I really don't understand, I guess.
Please tell me one thing: based on the data I quoted above, is java using 1.5 gigabytes of memory (physical+swap), or not?
If not, then please tell me this: how can I tell how much physical and swap memory java (or any other process) is using? I simply want to know how much physical memory is used by it, and how much of my swap file is used by it.
Thanks in advance.
|
please try following commands:
# pmap [pid of that java process]
# cat /proc/[pid]/maps
maybe we can see in detail where are all those 1.5G used. maybe just some big shared libraries that really do nothing but sitting there.
|
|
|
01-27-2006, 04:04 AM
|
#13
|
LQ Newbie
Registered: Jan 2006
Posts: 10
Original Poster
Rep:
|
Hmm, thanks, pczou, I didn't know of those commands (well cat I of course knew, but not to do that...).
Ok, I did it, and it's very very long. So I won't post it all. But the interesting part is this:
Code:
Address Kbytes RSS Anon Locked Mode Mapping
00002aaaae2b3000 1042304 - - - rwx-- [ anon ]
As for cat /proc, it's also too long to post here. Also, I couldn't find a line(s) that correspond directly to the above (but this seems the closest:
2aaaae2c3000-2aaaedc93000 rwxp 2aaaae2c3000 00:00 0 - seems useless to me, though, but I don't know).
The [ anon ] means that there isn't a name corresponding to the memory chunk, I see in the documentation. So, is there anything else I can do to find out what is taking a gigabyte of RAM?
Also, I ask again: if this process is indeed of size 1.5 gigabytes, where does it reside? My physical+swap isn't big enough for it. I must not understand something fundamental here.
|
|
|
01-27-2006, 05:24 AM
|
#14
|
LQ Newbie
Registered: Aug 2005
Posts: 14
Rep:
|
memory allocation pool of java can be limited by option -Xmx, e.g. 'java -Xms16m -Xmx128m'.
the 1.5G memory is just the virtual memory space taken by the process, physical memory is allocated only on demand. for example, if a large chunk of memory ls malloc'd or large file is mmap'd, the virtual memory grows but actually no physical memory is alloced (yet). so the 'RES' field of top output shows the resident memory really consumed by the java process, no need to worry too much about the 'VIRT' field.
|
|
|
01-27-2006, 09:04 AM
|
#15
|
LQ Newbie
Registered: Jan 2006
Posts: 10
Original Poster
Rep:
|
The funny thing is, java takes 1.6 gigabytes (it rose since my original post) even though I ran it with -Xmx64m. And Knotify now uses 619 mb. Something just seems 'wrong' with all of this. Ah well...
So Linux has no problem allocating more ram than I have physical+swap? It does this and hopes that not all of it will actually be used?
|
|
|
All times are GMT -5. The time now is 01:05 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|