Re: Memory and/or cache issues?

From: "mcelroy, tim" <tim(dot)mcelroy(at)bostonstock(dot)com>
To: "'Craig A(dot) James'" <cjames(at)modgraph-usa(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Memory and/or cache issues?
Date: 2006-05-05 14:48:01
Message-ID: 0C4841B42F87D51195BD00B0D020F5CB044B2615@MORPHEUS
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Thanks for a great explanation Craig, makes more sense now.

Tim

-----Original Message-----
From: Craig A. James [mailto:cjames(at)modgraph-usa(dot)com]
Sent: Friday, May 05, 2006 10:51 AM
To: mcelroy, tim
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: [PERFORM] Memory and/or cache issues?

mcelroy, tim wrote:
> Sorry, been up all night and maybe provided too much information or not
> the right information and only confused folks, tired I guess. When I
> say 'in use' I am referring to the 'used' column. Thanks all who have
> responded to this inquiry, I appreciate it.
>
> Here's free from PROD001:
> [root(at)wbibsngwyprod001 kernel]# free -k -t
> total used free shared buffers cached
> Mem: 7643536 6975772 667764 0 165496 5393396
> -/+ buffers/cache: 1416880 6226656
> Swap: 8185108 5208 8179900
> Total: 15828644 6980980 8847664

On Linux (unlike most Unix systems), "used" includes both processes AND the
kernel's file-system buffers, which means "used" will almost always be close
to 100%. Starting with a freshly-booted system, you can issue almost any
command that scans files, and "used" will go up and STAY at nearly 100% of
memory. For example, reboot and try "tar cf - / >/dev/null" and you'll see
the same sort of "used" numbers.

In My Humble Opinion, this is a mistake in Linux. This confuses just about
everyone the first time they see it (including me), because the file-system
buffers are dynamic and will be relenquished by the kernel if another
process needs memory. On Unix systems, "used" means, "someone else is using
it and you can't have it", which is what most of us really want to know.

Craig

Browse pgsql-performance by date

  From Date Subject
Next Message Craig A. James 2006-05-05 14:51:26 Re: Memory and/or cache issues?
Previous Message Witold Strzelczyk 2006-05-05 14:46:43 slow variable against int??