mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Prevent concurrent SimpleLruTruncate() for any given SLRU.
The SimpleLruTruncate() header comment states the new coding rule. To achieve this, add locktype "frozenid" and two LWLocks. This closes a rare opportunity for data loss, which manifested as "apparent wraparound" or "could not access status of transaction" errors. Data loss is more likely in pg_multixact, due to released branches' thin margin between multiStopLimit and multiWrapLimit. If a user's physical replication primary logged ": apparent wraparound" messages, the user should rebuild standbys of that primary regardless of symptoms. At less risk is a cluster having emitted "not accepting commands" errors or "must be vacuumed" warnings at some point. One can test a cluster for this data loss by running VACUUM FREEZE in every database. Back-patch to 9.5 (all supported versions). Discussion: https://postgr.es/m/20190218073103.GA1434723@rfd.leadboat.com
This commit is contained in:
@ -7971,7 +7971,8 @@
|
||||
and general database objects (identified by class OID and object OID,
|
||||
in the same way as in <structname>pg_description</structname> or
|
||||
<structname>pg_depend</structname>). Also, the right to extend a
|
||||
relation is represented as a separate lockable object.
|
||||
relation is represented as a separate lockable object, as is the right to
|
||||
update <structname>pg_database</structname>.<structfield>datfrozenxid</structfield>.
|
||||
Also, <quote>advisory</> locks can be taken on numbers that have
|
||||
user-defined meanings.
|
||||
</para>
|
||||
@ -7997,6 +7998,7 @@
|
||||
Type of the lockable object:
|
||||
<literal>relation</>,
|
||||
<literal>extend</>,
|
||||
<literal>frozenid</literal>,
|
||||
<literal>page</>,
|
||||
<literal>tuple</>,
|
||||
<literal>transactionid</>,
|
||||
|
Reference in New Issue
Block a user