Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ The default value for `pg_failover_slots.synchronize_slot_names` is `name_like:%
### drop_extra_slots
Controls what happens to extra slots on the standby that aren't found on the primary using the `pg_failover_slots.synchronize_slot_names` filter. When set to `true` (the default), they are dropped. Otherwise, they're retained.

If you are using the standby for logical decoding (as a publisher), you should probably disable this setting. pg_failover_slots might remove a logical replication slot if there is a momentary disconnection.

### primary_dsn
Specifies the connection string to use to connect to the primary when fetching slot information.

Expand Down
6 changes: 6 additions & 0 deletions advocacy_docs/pg_extensions/pg_failover_slots/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,9 @@ PG Failover Slots makes logical replication slots usable across a physical failo
- Removing any slots from the standby that aren't found on the primary
- Periodically synchronizing the position of slots on the standby based on the primary
- Ensuring that selected standbys receive data before any of the logical slot walsenders can send data to consumers

!!!important "Deprecation notice"

v18 will be the final release for which EDB supports pg_failover_slots. This will allow customers time to transition before v19, where we recommend using the native logical failover slot capability introduced in PostgreSQL 17.

!!!
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ title: PG Failover Slots release notes
navTitle: "Release notes"
indexCards: none
navigation:
- pg_failover_slots_1.2.0_rel_notes
- pg_failover_slots_1.1.0_rel_notes
- pg_failover_slots_1.0.1_rel_notes
- pg_failover_slots_1.0.0_rel_notes
---
The PG Failover Slots documentation describes the latest version of PG Failover Slots,
Expand All @@ -14,6 +16,7 @@ about the release that introduced the feature.

| Version | Release Date |
| --------------------------- | ------------ |
| [1.2.0](pg_failover_slots_1.2.0_rel_notes) | 25 Nov 2025 |
| [1.1.0](pg_failover_slots_1.1.0_rel_notes) | 27 Aug 2024 |
| [1.0.1](pg_failover_slots_1.0.1_rel_notes) | 07 Jun 2023 |
| [1.0.0](pg_failover_slots_1.0.0_rel_notes) | 31 Mar 2023 |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Release notes for PG Failover Slots version 1.2.0
navTitle: "Version 1.2.0"
---

This release of PG Failover Slots includes:

| Type | Description |
| ------- | --------------------------------------- |
| Feature | Added support for PostgreSQL 18. |
Loading