diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 16 |
2 files changed, 19 insertions, 1 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 0709b35c043..1466606c348 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -10215,7 +10215,8 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l 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</quote> locks can be taken on numbers that have user-defined meanings. </para> @@ -10243,6 +10244,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l Type of the lockable object: <literal>relation</literal>, <literal>extend</literal>, + <literal>frozenid</literal>, <literal>page</literal>, <literal>tuple</literal>, <literal>transactionid</literal>, diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 408ecbcae05..5243f5f3461 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1739,6 +1739,12 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser <entry>Waiting to extend a relation.</entry> </row> <row> + <entry><literal>frozenid</literal></entry> + <entry>Waiting to + update <structname>pg_database</structname>.<structfield>datfrozenxid</structfield> + and <structname>pg_database</structname>.<structfield>datminmxid</structfield>.</entry> + </row> + <row> <entry><literal>object</literal></entry> <entry>Waiting to acquire a lock on a non-relation database object.</entry> </row> @@ -1907,6 +1913,11 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser <entry>Waiting to read or update <command>NOTIFY</command> messages.</entry> </row> <row> + <entry><literal>NotifyQueueTail</literal></entry> + <entry>Waiting to update limit on <command>NOTIFY</command> message + storage.</entry> + </row> + <row> <entry><literal>NotifySLRU</literal></entry> <entry>Waiting to access the <command>NOTIFY</command> message SLRU cache.</entry> @@ -2083,6 +2094,11 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser <entry>Waiting for WAL buffers to be written to disk.</entry> </row> <row> + <entry><literal>WrapLimitsVacuum</literal></entry> + <entry>Waiting to update limits on transaction id and multixact + consumption.</entry> + </row> + <row> <entry><literal>XactBuffer</literal></entry> <entry>Waiting for I/O on a transaction status SLRU buffer.</entry> </row> |