Re: find replication slots that "belong" to a publication - Mailing list pgsql-general

From Laurenz Albe
Subject Re: find replication slots that "belong" to a publication
Date
Msg-id f673c080f33805fdf5e3060f8f3338ebc803eb19.camel@cybertec.at
Whole thread Raw
In response to Re: find replication slots that "belong" to a publication  (Willy-Bas Loos <willybas@gmail.com>)
Responses Re: find replication slots that "belong" to a publication
List pgsql-general
On Mon, 2025-04-07 at 12:16 +0200, Willy-Bas Loos wrote:
> My question is not so much about "can i drop a certain replication slot", 
> more about "does this publication still have any replication slots?".
> Or, if you will: "what's the publication for this replication slot?".
>
> I've double checked the views that you suggested, and I found that I can relate
> the WAL sender processes to replication slots through pg_replication_slots.active_pid .
> I've also looked into replication origins.
>
> But I can't find a link to the publication. And that's what I need to know.

I don't think that there is a connection between a publication and a
replication slot.  That connection is only made when a subscriber connects
and runs the START_REPLICATION command [1] and specifies the "pgoutput"
plugin with the "publication_names" option [2].

I don't think you can see that information reflected in a system view
on the primary.  You'd have to query "pg_subscription" on the standby.

Yours,
Laurenz Albe


 [1]:
https://www.postgresql.org/docs/current/protocol-replication.html#PROTOCOL-REPLICATION-START-REPLICATION-SLOT-LOGICAL
 [2]: https://www.postgresql.org/docs/current/protocol-logical-replication.html#PROTOCOL-LOGICAL-REPLICATION-PARAMS



pgsql-general by date:

Previous
From: Joe Conway
Date:
Subject: Re: Kubernetes, cgroups v2 and OOM killer - how to avoid?
Next
From: Artur Zakirov
Date:
Subject: Re: Performance regression when adding LIMIT 1 to a query