Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitde492c1

Browse files
committed
doc: Add note that DROP SUBSCRIPTION drops replication slot
Add some information about what to do when this fails.
1 parent420a039 commitde492c1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

‎doc/src/sgml/ref/drop_subscription.sgml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,28 @@ DROP SUBSCRIPTION [ IF EXISTS ] <replaceable class="parameter">name</replaceable
7373
</variablelist>
7474
</refsect1>
7575

76+
<refsect1>
77+
<title>Notes</title>
78+
79+
<para>
80+
When dropping a subscription that is associated with a replication slot on
81+
the remote host (the normal state), <command>DROP SUBSCRIPTION</command>
82+
will connect to the remote host and try to drop the replication slot as
83+
part of its operation. This is necessary so that the resources allocated
84+
for the subscription on the remote host are released. If this fails,
85+
either because the remote host is not reachable or because the remote
86+
replication slot cannot be dropped or does not exist or never existed,
87+
the <command>DROP SUBSCRIPTION</command> command will fail. To proceed in
88+
this situation, disassociate the subscription from the replication slot by
89+
executing <literal>ALTER SUBSCRIPTION ... SET (slot_name = NONE)</literal>.
90+
After that, <command>DROP SUBSCRIPTION</command> will no longer attempt any
91+
actions on a remote host. Note that if the remote replication slot still
92+
exists, it should then be dropped manually; otherwise it will continue to
93+
reserve WAL and might eventually cause the disk to fill up. See
94+
also <xref linkend="logical-replication-subscription-slot">.
95+
</para>
96+
</refsect1>
97+
7698
<refsect1>
7799
<title>Examples</title>
78100

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp