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 0A3221C70F24FB45833433255569204D1FB67733@G01JPEXMBYT05
Whole thread Raw
In response to Re: Protect syscache from bloating with negative cache entries  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Protect syscache from bloating with negative cache entries  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
From: Tom Lane [mailto:tgl@sss.pgh.pa.us]
> I'm really disappointed by the direction this thread is going in.
> The latest patches add an enormous amount of mechanism, and user-visible
> complexity, to do something that we learned was a bad idea decades ago.
> Putting a limit on the size of the syscaches doesn't accomplish anything
> except to add cycles if your cache working set is below the limit, or make
> performance fall off a cliff if it's above the limit.  I don't think there's
> any reason to believe that making it more complicated will avoid that
> problem.
> 
> What does seem promising is something similar to Horiguchi-san's original
> patches all the way back at
> 
> https://www.postgresql.org/message-id/20161219.201505.11562604.horiguc
> hi.kyotaro@lab.ntt.co.jp

> so I'd been thinking about ways to fix that case in particular.

You're suggesting to go back to the original issue (bloat by negative cache entries) and give simpler solution to it
once,aren't you?  That may be the way to go.
 

But the syscache/relcache bloat still remains a problem, when there are many live tables and application connections.
Wouldyou agree to solve this in some way?  I thought Horiguchi-san's latest patches would solve this and the negative
entries. Can we consider that his patch and yours are orthogonal, i.e., we can pursue Horiguchi-san's patch after yours
iscommitted?
 

(As you said, some parts of Horiguchi-san's patches may be made simpler.  For example, the ability to change another
session'sGUC variable can be discussed in a separate thread.)
 

I think we need some limit to the size of the relcache, syscache, and plancache.  Oracle and MySQL both have it, using
LRUto evict less frequently used entries.  You seem to be concerned about the LRU management based on your experience,
butwould it really cost so much as long as each postgres process can change the LRU list without coordination with
otherbackends now?  Could you share your experience?
 

FYI, Oracle provides one parameter, shared_pool_size, that determine the size of a memory area that contains SQL plans
andvarious dictionary objects.  Oracle decides how to divide the area among constituents.  So it could be possible that
onecomponent (e.g. table/index metadata) is short of space, and another (e.g. SQL plans) has free space.  Oracle
providesa system view to see the free space and hit/miss of each component.  If one component suffers from memory
shortage,the user increases shared_pool_size.  This is similar to what Horiguchi-san is proposing.
 

MySQL enables fine-tuning of each component.  It provides the size parameters for six memory partitions of the
dictionaryobject cache, and the usage statistics of those partitions through the Performance Schema.
 

tablespace definition cache
schema definition cache
table definition cache
stored program definition cache
character set definition cache
collation definition cache

I wonder whether we can group existing relcache/syscache entries like this.



[MySQL]
14.4 Dictionary Object Cache
https://dev.mysql.com/doc/refman/8.0/en/data-dictionary-object-cache.html
--------------------------------------------------
The dictionary object cache is a shared global cache that stores previously accessed data dictionary objects in memory
toenable object reuse and minimize disk I/O. Similar to other cache mechanisms used by MySQL, the dictionary object
cacheuses an LRU-based eviction strategy to evict least recently used objects from memory.
 

The dictionary object cache comprises cache partitions that store different object types. Some cache partition size
limitsare configurable, whereas others are hardcoded.
 
--------------------------------------------------


8.12.3.1 How MySQL Uses Memory
https://dev.mysql.com/doc/refman/8.0/en/memory-use.html
--------------------------------------------------
table_open_cache
MySQL requires memory and descriptors for the table cache.

table_definition_cache
For InnoDB, table_definition_cache acts as a soft limit for the number of open table instances in the InnoDB data
dictionarycache. If the number of open table instances exceeds the table_definition_cache setting, the LRU mechanism
beginsto mark table instances for eviction and eventually removes them from the data dictionary cache. The limit helps
addresssituations in which significant amounts of memory would be used to cache rarely used table instances until the
nextserver restart.
 
--------------------------------------------------

Regards
Takayuki Tsunakawa





pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: Libpq support to connect to standby server as priority
Next
From: Tom Lane
Date:
Subject: Re: Libpq support to connect to standby server as priority