LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   LQ Articles Discussion (https://www.linuxquestions.org/questions/lq-articles-discussion-68/)
-   -   Understanding memory usage on Linux (https://www.linuxquestions.org/questions/lq-articles-discussion-68/understanding-memory-usage-on-linux-530246/)

mlsx 02-18-2007 06:53 PM

Understanding memory usage on Linux
 
A new article entry has been added:

Understanding memory usage on Linux

Quote:

This entry is for those people who have ever wondered,

vangelis 02-21-2007 01:07 AM

The article is great, thanks for clearing up many things.

One of them was that I couldn't find a single X text editor that would consume less memory than windows notepad. I really thought that it wasn't possible..no I see

unksi 04-15-2007 07:09 AM

This article cleared it up a lot for me, thank you :)

PhillipHuang 04-25-2007 05:01 AM

Very good article. Thanks a lot.

haxpor 07-13-2007 02:27 AM

Great, very useful.
THANKS again.

XavierP 07-13-2007 06:28 AM

I have added a note at the bottom of the article to ensure that it is clear that this is a copy of a post on the Virtual Threads blog. we should always attribute whenever this happens.

BHABANIPRASADPATI 07-20-2009 06:23 AM

Wow... nice one.:newbie:

johnsfine 07-20-2009 07:35 AM

Quote:

Originally Posted by BHABANIPRASADPATI (Post 3613710)
Wow... nice one.:newbie:

Did you notice the thread was old and the linked content was effectively very old (nearly obsolete even when it was posted).

It is even more true now that there is no way of providing memory use statistics that are both simple and correct. But the reasons have evolved.

It is still true that a lot of code is shareable and there are no good statistics on how much it is shared. When a process uses shareable code, that gets entirely counted in that process's memory use statistics regardless of whether it is also counted in other processes' memory use statistics.

But that has become a very small share of virtual memory use, especially on 64 bit systems.

For example, I just looked at the biggest virtual memory users on one of the shared systems I'm logged into at the moment. The biggest one, at 419MB, is identified in top as /usr/bin/sealer but is actually /usr/bin/python (I assume python sets its argv[0] based on what python program it is running).

I've seen many questions online (without great answers) about what that process is and why it is using so much virtual memory. I'm curious myself but don't have time for a serious investigation.

On my system, I see that only 11MB of that 419MB is resident and only 4.6MB is shareable. The entire moderately loaded multi user Centos system is using only 128MB of swap space, which I expect is mainly other tasks, not that 419MB task. But anyway, after including all the .so mappings (which are in that shareable 4.6MB) plus all of the resident memory (which already double counts some of the .so mappings) plus all of the swapped out memory, most of the 419MB is still unaccounted for.

In many cases the large blocks of memory that are in virtual size but no where else are "demand zero" memory. I haven't taken the trouble to figure out where the invisible majority of the 419MB is in this example.

Maybe long ago, the level of actual sharing of .so mappings was a significant fraction of the cause of confusing memory statistics. Maybe long ago influencing that level of sharing, as suggested in that article, by sticking to one version/type of desktop software, was a significant factor in improving memory efficiency.

But now, physical and virtual memory sizes have both grown so much faster than .so mapping sizes, that those things really don't matter.

icegood 09-14-2010 07:51 AM

Anyway it still doesn't understood why there is no program that shows number and amount of nonshared pages to at least estimate 'clear' usage of program

suhas! 03-07-2011 03:36 AM

On my system, pmap's last line shows this..

pmap -d 4282 | grep mapped
mapped: 69368K writeable/private: 276K shared: 28K


shared is 28K.. So IIUC, shared + writeable/private should equal to mapped right? can you please explain about shared in above context?

Thanks and Regards,


All times are GMT -5. The time now is 03:04 PM.