From 8eb0aebfd496c76f5bd7a98cdd1c46eac1383055 Mon Sep 17 00:00:00 2001 From: piano35-edb <160748516+piano35-edb@users.noreply.github.com> Date: Tue, 10 Dec 2024 09:58:32 -0600 Subject: [PATCH 1/2] add note to avoid create extension cmd --- advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx | 3 +++ advocacy_docs/pg_extensions/pg_failover_slots/index.mdx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx index 633dcfa9030..b1a31a70e78 100644 --- a/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx +++ b/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx @@ -5,6 +5,9 @@ navTitle: Configuring You must add the extension to `shared_preload_libraries` on both the primary instance as well as any standby that's used for high availability (failover or switchover) purposes. +!!!Note + You don't need to run the `CREATE EXTENSION` command for PG Failover Slots. + ## Prerequisite settings The following settings are required: diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx index 0653cc7f54f..17536dd8911 100644 --- a/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx +++ b/advocacy_docs/pg_extensions/pg_failover_slots/index.mdx @@ -13,7 +13,7 @@ directoryDefaults: PG Failover Slots (pg_failover_slots) is an extension released as open source software under the PostgreSQL License. If you have logical replication publications on Postgres databases that are also part of a streaming replication architecture, PG Failover Slots avoids the need for you to reseed your logical replication tables when a new standby gets promoted to primary. -Since the replication slot used by logical replication is maintained only on the primary node, downstream subscribers don't receive any new changes from the newly promoted primary until the slot is created on the newly promoted primary. Picking up logical replication changes from the newly promoted standby is unsafe because THE following information will be lost: +Since the replication slot used by logical replication is maintained only on the primary node, downstream subscribers don't receive any new changes from the newly promoted primary until the slot is created on the newly promoted primary. Picking up logical replication changes from the newly promoted standby is unsafe because the following information will be lost: - The data a subscriber confirmed receiving - The log data that still needs to be retained for the subscriber From ed5ba2274232bee9f5393098d8042259b7174f0f Mon Sep 17 00:00:00 2001 From: piano35-edb <160748516+piano35-edb@users.noreply.github.com> Date: Thu, 19 Dec 2024 09:21:03 -0600 Subject: [PATCH 2/2] edit to should not --- advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx b/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx index b1a31a70e78..98e3ed6d2d7 100644 --- a/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx +++ b/advocacy_docs/pg_extensions/pg_failover_slots/configuring.mdx @@ -6,7 +6,7 @@ navTitle: Configuring You must add the extension to `shared_preload_libraries` on both the primary instance as well as any standby that's used for high availability (failover or switchover) purposes. !!!Note - You don't need to run the `CREATE EXTENSION` command for PG Failover Slots. + You should not run the `CREATE EXTENSION` command for PG Failover Slots. ## Prerequisite settings