Re: tmpfs and postgres memory

Поиск
Список
Период
Сортировка
От Greg Spiegelberg
Тема Re: tmpfs and postgres memory
Дата
Msg-id w2z22723571004262059n36f065ai5ff22e08a6920a2c@mail.gmail.com
обсуждение исходный текст
Ответ на tmpfs and postgres memory  (Anj Adu <fotographs@gmail.com>)
Список pgsql-performance
On Mon, Apr 26, 2010 at 5:24 PM, Anj Adu <fotographs@gmail.com> wrote:
> I have a 16G box and tmpfs is configured to use 8G for tmpfs .
>
> Is a lot of memory being wasted that can be used for Postgres ? (I am
> not seeing any performance issues, but I am not clear how Linux uses
> the tmpfs and how Postgres would be affected by the reduction in
> memory)

Like Solaris, tmpfs is from swap and swap is both memory and disk so
there is no guarantee when you're using it that it will be the fast
memory based file system you're looking for.

What you may be wanting is ramfs.  Unlike tmpfs, it is 100% memory.
Another difference is though you may mount a ramfs file system
specifying a size, no real size is enforced.  If you have 2GB of
memory and attempt to copy 2GB of files to a ramfs mount point the
system will do it until all the space, i.e. memory, is gone.

Both tmpfs and ramfs come with a price, that is at the flick of a
switch, loss of power or other cause that resets or reboots the system
all data is lost.  That reason doesn't necessarily mean you can't use
a memory based file system it just limits it's applications.

Personally, I'd find a way to tell PostgreSQL about the memory before
toying with tmpfs or ramfs but I'm sure our applications are
different.

-Greg

В списке pgsql-performance по дате отправления:

Предыдущее
От: Anj Adu
Дата:
Сообщение: tmpfs and postgres memory
Следующее
От: Robert Haas
Дата:
Сообщение: Re: Optimization idea