Re: Memory issues with PostgreSQL 15 - Mailing list pgsql-general

From Tom Lane
Subject Re: Memory issues with PostgreSQL 15
Date
Msg-id 3332.1717019021@sss.pgh.pa.us
Whole thread Raw
In response to RE: Memory issues with PostgreSQL 15  (Christian Schröder <christian.schroeder@wsd.com>)
List pgsql-general
=?utf-8?B?Q2hyaXN0aWFuIFNjaHLDtmRlcg==?= <christian.schroeder@wsd.com> writes:
> # ipcs -m

> ------ Shared Memory Segments --------
> key        shmid      owner      perms      bytes      nattch     status
> 0x04000194 35         postgres   600        56         19

> I am surprised to see this since I would have expected much more shared memory to be used by the database. Is there
anythingin the configuration that prevents the shared memory from being used? 

SysV shared memory isn't that relevant to Postgres anymore.  Most
of what we allocate goes into POSIX-style shared memory segments,
which are not shown by "ipcs".  We do still create one small
fixed-size data structure in SysV memory, which is what you're
seeing here, for arcane reasons having to do with the lifespan of
the shared memory segments being different in those two APIs.

>> <2024-05-21 11:34:46 CEST - mailprocessor> ERROR:  could not resize
>> shared memory segment "/PostgreSQL.2448337832" to 182656 bytes: No
>> space left on device

This seems to indicate that you're hitting some kernel limit on
the amount of POSIX shared memory.  Not sure where to look for
that.

            regards, tom lane



pgsql-general by date:

Previous
From: José Mello Júnior
Date:
Subject: Re: Dll libpq.dll 32 bits
Next
From: Juan Rodrigo Alejandro Burgos Mella
Date:
Subject: Re: Dll libpq.dll 32 bits