summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/monitoring.sgml38
-rw-r--r--doc/src/sgml/release-13.sgml14
2 files changed, 0 insertions, 52 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 405c09c9497..b5c0bd78ac8 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -2462,38 +2462,6 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i
Send time of last reply message received from standby server
</para></entry>
</row>
-
- <row>
- <entry role="catalog_table_entry"><para role="column_definition">
- <structfield>spill_txns</structfield> <type>bigint</type>
- </para>
- <para>
- Number of transactions spilled to disk after the memory used by
- logical decoding exceeds <literal>logical_decoding_work_mem</literal>. The
- counter gets incremented both for top-level transactions and
- subtransactions.
- </para></entry>
- </row>
-
- <row>
- <entry role="catalog_table_entry"><para role="column_definition">
- <structfield>spill_count</structfield> <type>bigint</type>
- </para>
- <para>
- Number of times transactions were spilled to disk. Transactions
- may get spilled repeatedly, and this counter gets incremented on every
- such invocation.
- </para></entry>
- </row>
-
- <row>
- <entry role="catalog_table_entry"><para role="column_definition">
- <structfield>spill_bytes</structfield> <type>bigint</type>
- </para>
- <para>
- Amount of decoded transaction data spilled to disk.
- </para></entry>
- </row>
</tbody>
</tgroup>
</table>
@@ -2518,12 +2486,6 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i
mechanism will simply display NULL lag.
</para>
- <para>
- Tracking of spilled transactions works only for logical replication. In
- physical replication, the tracking mechanism will display 0 for spilled
- statistics.
- </para>
-
<note>
<para>
The reported lag times are not predictions of how long it will take for
diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml
index 7395edb5ba5..b893b7d6c3f 100644
--- a/doc/src/sgml/release-13.sgml
+++ b/doc/src/sgml/release-13.sgml
@@ -983,20 +983,6 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
<listitem>
<!--
-Author: Amit Kapila <akapila@postgresql.org>
-2019-11-21 [9290ad198] Track statistics for spilling of changes from ReorderBuf
--->
-
- <para>
- Add columns to the <link
- linkend="monitoring-stats-dynamic-views-table"><structname>pg_stat_replication</structname></link>
- system view to report how much logical decoding information has been
- spilled to disk (Tomas Vondra)
- </para>
- </listitem>
-
- <listitem>
-<!--
Author: Robert Haas <rhaas@postgresql.org>
2020-01-09 [ed10f32e3] Add pg_shmem_allocations view.
-->