diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx index 566f5a98c8..d772a37bc4 100644 --- a/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx +++ b/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx @@ -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. diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx index 699b6db5ec..bbcb232edb 100644 --- a/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx +++ b/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx @@ -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. + +!!! diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/index.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/index.mdx index f3bca3ad82..f23f3c070b 100644 --- a/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/index.mdx +++ b/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/index.mdx @@ -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, @@ -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 | diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/pg_failover_slots_1.2.0_rel_notes.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/pg_failover_slots_1.2.0_rel_notes.mdx new file mode 100644 index 0000000000..4c0115cfd5 --- /dev/null +++ b/advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/pg_failover_slots_1.2.0_rel_notes.mdx @@ -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. |