Logical replication in Neon
Information about logical replication specific to Neon
This topic outlines information about logical replication specific to Neon, including important notices.
Important notices
To avoid potential issues, please review the following notices carefully before using logical replication in Neon.
Neon as a publisher
These notices apply when replicating data from Neon:
- Autosuspend: Neon does not autosuspend a compute that has an active connection from a logical replication subscriber. In other words, a Neon Postgres instance with an active subscriber will not scale to zero, which may result in increased compute usage. For more information, see Logical replication and autosuspend.
- Removal of inactive replication slots: To prevent storage bloat, Neon automatically removes inactive replication slots after 75 minutes if there are other active replication slots. If you plan to have more than one subscriber, please read Unused replication slots before you begin.
Neon as a subscriber
This notice applies when replicating data to Neon:
-
Duplicate subscriptions when branching from a subscriber: When a child branch is created, restored, or reset from a parent branch that is a subscriber in a logical replication configuration, any subscription defined on the parent branch is duplicated on the child branch. This duplicate subscription will attempt to establish a connection to the same publisher, potentially leading to "slot already used" errors. Additionally, if the parent branch's compute is suspended, the child branch might take over as the subscriber, which can result in a replication gap on the parent branch as updates are directed to the child branch.
To avoid interruptions and inconsistencies, it’s strongly recommended to disable and drop the duplicate subscriptions on child branches using the following commands:
Even with this workaround, the replication gap issue can still occur if the parent branch is suspended before the duplicate subscription on a child branch is disabled. Therefore, we encourage you to take this action promptly on newly created, restored, or reset child branches.
This issue will be addressed in an upcoming release.
Logical replication and autosuspend
By default, Neon's Autosuspend feature suspends a compute after 300 seconds (5 minutes) of inactivity. In a logical replication setup, Neon does not autosuspend a compute that has an active connection from a logical replication subscriber. In other words, a compute with an active subscriber remains active at all times. Neon determines if there are active connections from a logical replication subscriber by checking for walsender
processes on the Neon Postgres instance using the following query:
If the count is greater than 0, a Neon compute where the publishing Postgres instance runs will not be suspended.
Unused replication slots
To prevent storage bloat, Neon automatically removes inactive replication slots after 75 minutes if there are other active replication slots.
If you have only one replication slot, and that slot becomes inactive, it will not be dropped because a single replication slot does not cause storage bloat.
An inactive replication slot is one that doesn't acknowledge flush_lsn
progress for more than 75 minutes. This is the same flush_lsn
value found in the pg_stat_replication
view in your Neon database.
An inactive replication slot can be the result of a dead subscriber, where the replication slot has not been removed after a subscriber is deactivated or becomes unavailable. An inactive replication slot can also result from a long replication delay configured on the subscriber. For example, subscribers like Fivetran or Airbyte let you to configure the replication frequency or set a replication delay to minimize usage.
How to avoid removal of replication slots
-
If replication frequency configured on the subscriber is more than 75 minutes, you can prevent replication slots from being dropped by changing the replication frequency to every 60 minutes, for example.
This will ensure that your subscriber reports
flush_lsn
progress more frequently than every 75 minutes. If increasing replication frequency is not possible, please contact Neon Support for alternatives. -
If using Debezium, set flush.lsn.source to
true
to ensure thatflush_lsn
progress is being reported. For other subscriber platforms, check for an equivalent setting to make sure it's configured to acknowledge progress on the subscriber.
What to do if your replication slot is removed
If you find that a replication slot was removed and you need to add it back, please see Create a replication slot for instructions or refer to the replication slot creation instructions for your subscriber.
Replication roles
It is recommended that you create a dedicated Postgres role for replicating data from Neon to a subscriber. This role must have the REPLICATION
privilege. The default Postgres role created with your Neon project and roles created using the Neon Console, CLI, or API are granted membership in the neon_superuser role, which has the required REPLICATION
privilege. Roles created via SQL do not have this privilege, and the REPLICATION
privilege cannot be granted.
You can verify that your role has the REPLICATION
privilege by running the following query:
Subscriber access
A subscriber must be able to access the Neon database that is acting as a publisher. In Neon, no action is required unless you use Neon's IP Allow feature to limit IP addresses that can connect to Neon.
If you use Neon's IP Allow feature:
- Determine the IP address or addresses of the subscriber.
- In your Neon project, add the IPs to your IP Allow list, which you can find in your project's settings. For instructions, see Configure IP Allow.
Publisher access
When replicating data to Neon, you may need to allow connections from Neon on the publisher platform or service.
Neon uses 3 to 6 IP addresses per region for outbound communication, corresponding to each availability zone in the region. See NAT Gateway IP addresses for Neon's NAT gateway IP addresses. When configuring access, be sure to open access to all of the NAT gateway IP addresses for your Neon project's region.
Decoder plugins
Neon supports both pgoutput
and wal2json
replication output decoder plugins.
pgoutput
: This is the default logical replication output plugin for Postgres. Specifically, it's part of the Postgres built-in logical replication system, designed to read changes from the database's write-ahead log (WAL) and output them in a format suitable for logical replication.wal2json
: This is also a logical replication output plugin for Postgres, but it differs frompgoutput
in that it converts WAL data intoJSON
format. This makes it useful for integrating Postgres with systems and applications that work withJSON
data. For usage information, see The wal2json plugin.
Dedicated replication slots
Some data services and platforms require dedicated replication slots. You can create a dedicated replication slot using the standard PostgreSQL syntax. As mentioned above, Neon supports both pgoutput
and wal2json
replication output decoder plugins.
Publisher settings
The max_wal_senders
and max_replication_slots
configuration parameter settings on Neon are set to 10
.
- The
max_wal_senders
parameter defines the maximum number of concurrent WAL sender processes that are responsible for streaming WAL data to subscribers. In most cases, you should have one WAL sender process for each subscriber or replication slot to ensure efficient and consistent data replication. - The
max_replication_slots
defines the maximum number of replication slots used to manage database replication connections. Each replication slot tracks changes in the publisher database to ensure that the connected subscriber stays up to date. You'll want a replication slot for each replication connection. For example, if you expect to have 10 separate subscribers replicating from your database, you would setmax_replication_slots
to 10 to accommodate each connection.
If you require different values for these parameters, please contact Neon support.
Replicating between databases on the same Neon project branch
Each branch in a Neon project has its own Postgres instance, and a Postgres instance is a database cluster, capable of supporting multiple databases. If your use case requires replicating data between two databases in the same database cluster, i.e., on the same Neon project branch, the setup is slightly different than configuring replication between separate Postgres instances. As described in the official PostgreSQL CREATE SUBSCRIPTION Notes documentation:
For example, on the publisher database, you would create the publication and the replication slot, as shown:
Then, on the subscriber database, you would create a subscription that references the replication slot with the create_slot
option set to false`:
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more details, see Getting Support.