Re: memory question

From: "Ed L(dot)" <pgsql(at)bluepolka(dot)net>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Re: memory question
Date: 2005-06-11 18:36:24
Message-ID: 034301c56eb4$791eafb0$6402010a@rowdy
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


IpcMemoryCreate: shmget(key=9099001, size=110002176, 03600) failed: Not enough space

This error usually means that PostgreSQL's request for a shared
memory segment exceeded available memory or swap space.
To reduce the request size (currently 110002176 bytes), reduce
PostgreSQL's shared_buffers parameter (currently 10000) and/or
its max_connections parameter (currently 60).

Glance (and GBL_MEM_UTIL) say ~80% of RAM is being used:

Total VM : 6.98gb Sys Mem : 3.48gb User Mem: 6.40gb Phys Mem: 16.0gb
Active VM: 5.94gb Buf Cache: 3.20gb Free Mem: 2.91gb Page 1 of 1

UserMem + SysMem + BufCache = ~80%, but that would leave 2.91gb "free"?

I don't understand why pgsql is not able to satisfy this 110MB request, either by utilizing the free memory reported by glance, or by giving up some up from the 3.2gb os buffer cache (we have dbc_min_pct = 3%, or 480mb, and dbc_max_pct = 20%, or 3.2gb, not a static os buffer cache).

I also see the sum of shared memory segments from ipcs adds up to 3.4gb.

So ps + ipcs = 7.8gb if pgsize = 4K. If pagesize = 3001, ps + ipcs = 6.6gb, pretty close to the 6.40gb above.

But still wondering why 110mb request cannot be satisfied from 2.91gb of free mem or 3.2gb os buffer cache?

Thanks,
Ed

Responses

Browse pgsql-general by date

  From Date Subject
Next Message David Fetter 2005-06-11 21:23:41 Re: return next and pl/perl
Previous Message Ed L. 2005-06-11 18:02:50 memory question