RE: Protect syscache from bloating with negative cache entries - Mailing list pgsql-hackers

From Tsunakawa, Takayuki
Subject RE: Protect syscache from bloating with negative cache entries
Date
Msg-id 0A3221C70F24FB45833433255569204D1F8FF0D9@G01JPEXMBYT05
Whole thread Raw
In response to Re: Protect syscache from bloating with negative cache entries  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Responses Re: Protect syscache from bloating with negative cache entries  (Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>)
List pgsql-hackers
From: Alvaro Herrera [mailto:alvherre@alvh.no-ip.org]
> The thing that comes to mind when reading this patch is that some time ago
> we made fun of other database software, "they are so complicated to configure,
> they have some magical settings that few people understand how to set".
> Postgres was so much better because it was simple to set up, no magic crap.
> But now it becomes apparent that that only was so because Postgres sucked,
> ie., we hadn't yet gotten to the point where we
> *needed* to introduce settings like that.  Now we finally are?

Yes.  We are now facing the problem of too much memory use by PostgreSQL, where about some applications randomly access
about200,000 tables.  It is estimated based on a small experiment that each backend will use several to ten GBs of
localmemory for CacheMemoryContext.  The total memory use will become over 1 TB when the expected maximum connections
areused.
 

I haven't looked at this patch, but does it evict all kinds of entries in CacheMemoryContext, ie. relcache, plancache,
etc?

Regards
Takayuki Tsunakawa







pgsql-hackers by date:

Previous
From: Tomas Vondra
Date:
Subject: Re: [HACKERS] [PATCH] Incremental sort
Next
From: Masahiko Sawada
Date:
Subject: Re: [HACKERS] Subscription code improvements