File tree 7 files changed +53
-0
lines changed
7 files changed +53
-0
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,12 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
273
273
will not record new statistics for that table. Any existing statistics
274
274
will be retained.
275
275
</para>
276
+
277
+ <para>
278
+ Each backend running <command>ANALYZE</command> will report its progress
279
+ in the <structname>pg_stat_progress_analyze</structname> view. See
280
+ <xref linkend="analyze-progress-reporting"/> for details.
281
+ </para>
276
282
</refsect1>
277
283
278
284
<refsect1>
@@ -291,6 +297,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
291
297
<member><xref linkend="app-vacuumdb"/></member>
292
298
<member><xref linkend="runtime-config-resource-vacuum-cost"/></member>
293
299
<member><xref linkend="autovacuum"/></member>
300
+ <member><xref linkend="analyze-progress-reporting"/></member>
294
301
</simplelist>
295
302
</refsect1>
296
303
</refentry>
Original file line number Diff line number Diff line change @@ -192,6 +192,11 @@ CLUSTER [VERBOSE]
192
192
are periodically reclustered.
193
193
</para>
194
194
195
+ <para>
196
+ Each backend running <command>CLUSTER</command> will report its progress
197
+ in the <structname>pg_stat_progress_cluster</structname> view. See
198
+ <xref linkend="cluster-progress-reporting"/> for details.
199
+ </para>
195
200
</refsect1>
196
201
197
202
<refsect1>
@@ -242,6 +247,7 @@ CLUSTER <replaceable class="parameter">index_name</replaceable> ON <replaceable
242
247
243
248
<simplelist type="inline">
244
249
<member><xref linkend="app-clusterdb"/></member>
250
+ <member><xref linkend="cluster-progress-reporting"/></member>
245
251
</simplelist>
246
252
</refsect1>
247
253
</refentry>
Original file line number Diff line number Diff line change @@ -82,6 +82,12 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
82
82
specified, data is transmitted via the connection between the
83
83
client and the server.
84
84
</para>
85
+
86
+ <para>
87
+ Each backend running <command>COPY</command> will report its progress
88
+ in the <structname>pg_stat_progress_copy</structname> view. See
89
+ <xref linkend="copy-progress-reporting"/> for details.
90
+ </para>
85
91
</refsect1>
86
92
87
93
<refsect1>
@@ -1052,4 +1058,12 @@ COPY [ BINARY ] <replaceable class="parameter">table_name</replaceable>
1052
1058
[ WITH NULL AS '<replaceable class="parameter">null_string</replaceable>' ]
1053
1059
</synopsis></para>
1054
1060
</refsect1>
1061
+
1062
+ <refsect1>
1063
+ <title>See Also</title>
1064
+
1065
+ <simplelist type="inline">
1066
+ <member><xref linkend="copy-progress-reporting"/></member>
1067
+ </simplelist>
1068
+ </refsect1>
1055
1069
</refentry>
Original file line number Diff line number Diff line change @@ -867,6 +867,12 @@ Indexes:
867
867
will interpret it as <literal>USING gist</literal>, to simplify conversion
868
868
of old databases to GiST.
869
869
</para>
870
+
871
+ <para>
872
+ Each backend running <command>CREATE INDEX</command> will report its
873
+ progress in the <structname>pg_stat_progress_create_index</structname>
874
+ view. See <xref linkend="create-index-progress-reporting"/> for details.
875
+ </para>
870
876
</refsect1>
871
877
872
878
<refsect1>
@@ -980,6 +986,7 @@ CREATE INDEX CONCURRENTLY sales_quantity_index ON sales_table (quantity);
980
986
<member><xref linkend="sql-alterindex"/></member>
981
987
<member><xref linkend="sql-dropindex"/></member>
982
988
<member><xref linkend="sql-reindex"/></member>
989
+ <member><xref linkend="create-index-progress-reporting"/></member>
983
990
</simplelist>
984
991
</refsect1>
985
992
</refentry>
Original file line number Diff line number Diff line change @@ -904,6 +904,7 @@ PostgreSQL documentation
904
904
905
905
<simplelist type="inline">
906
906
<member><xref linkend="app-pgdump"/></member>
907
+ <member><xref linkend="basebackup-progress-reporting"/></member>
907
908
</simplelist>
908
909
</refsect1>
909
910
Original file line number Diff line number Diff line change @@ -495,6 +495,12 @@ Indexes:
495
495
is reindexed concurrently, those indexes will be skipped. (It is possible
496
496
to reindex such indexes without the <command>CONCURRENTLY</command> option.)
497
497
</para>
498
+
499
+ <para>
500
+ Each backend running <command>REINDEX</command> will report its progress
501
+ in the <structname>pg_stat_progress_create_index</structname> view. See
502
+ <xref linkend="create-index-progress-reporting"/> for details.
503
+ </para>
498
504
</refsect2>
499
505
</refsect1>
500
506
@@ -553,6 +559,7 @@ REINDEX TABLE CONCURRENTLY my_broken_table;
553
559
<member><xref linkend="sql-createindex"/></member>
554
560
<member><xref linkend="sql-dropindex"/></member>
555
561
<member><xref linkend="app-reindexdb"/></member>
562
+ <member><xref linkend="create-index-progress-reporting"/></member>
556
563
</simplelist>
557
564
</refsect1>
558
565
</refentry>
Original file line number Diff line number Diff line change @@ -393,6 +393,15 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
393
393
information about automatic and manual vacuuming, see
394
394
<xref linkend="routine-vacuuming"/>.
395
395
</para>
396
+ <para>
397
+ Each backend running <command>VACUUM</command> without the
398
+ <literal>FULL</literal> option will report its progress in the
399
+ <structname>pg_stat_progress_vacuum</structname> view. Backends running
400
+ <command>VACUUM FULL</command> will instead report their progress in the
401
+ <structname>pg_stat_progress_cluster</structname> view. See
402
+ <xref linkend="vacuum-progress-reporting"/> and
403
+ <xref linkend="cluster-progress-reporting"/> for details.
404
+ </para>
396
405
</refsect1>
397
406
398
407
<refsect1>
@@ -422,6 +431,8 @@ VACUUM (VERBOSE, ANALYZE) onek;
422
431
<member><xref linkend="app-vacuumdb"/></member>
423
432
<member><xref linkend="runtime-config-resource-vacuum-cost"/></member>
424
433
<member><xref linkend="autovacuum"/></member>
434
+ <member><xref linkend="vacuum-progress-reporting"/></member>
435
+ <member><xref linkend="cluster-progress-reporting"/></member>
425
436
</simplelist>
426
437
</refsect1>
427
438
</refentry>
You can’t perform that action at this time.
0 commit comments