Skip to main content

PostgreSQL logical replication slots

To continuously replicate data from one database to another, you can configure logical replication using a logical replication slot.

Replication slots must always have a consumer. If there is no consumer, the volume of data in the slot will grow. You can check if replication slots have a consumer using an SQL query or replication slot status.

If you no longer use a replication slot, delete it.

Learn more about logical replication in the Logical Replication section of the PostgreSQL documentation.

Configure logical replication

  1. Create a logical replication slot.
  2. Configure a logical replication slot

Create a logical replication slot

We recommend creating logical replication slots through the control panel or through the Managed Database API. If you perform these operations through a client connected to the database, we do not guarantee that the slot will work.

The maximum number of logical replication slots is 26.

Only a user with the dbaas_replication role can create and use slots — this role is automatically assigned to the database owner and cannot be assigned to other users.

  1. In the Dashboard, on the top menu, click Products and select Managed Databases.
  2. Open the Active tab.
  3. Open the cluster page → Databases tab.
  4. Open the database card.
  5. In the Replication Slots block, click Add replication slot.
  6. Enter a slot name or keep the default name.
  7. Click Create.

Configure logical replication using a slot

After creating the slot, you need to configure logical replication between the source database and the destination database. The destination database can be in Servercore Managed Databases or in external storage.

  1. Create a publication in the source database:

    CREATE PUBLICATION <publication_name> FOR TABLE <table_name>;

    Specify:

    • <publication_name> — publication name;
    • <table_name> — table name.
  2. Optional: if required, add additional tables to the publication:

    ALTER PUBLICATION <publication_name> ADD TABLE <extra_table_name>;

    Specify <extra_table_name> — table name.

  3. Create a data schema of all replicated tables in the destination database and perform a schema dump in the source database using the pg_dump utility:

    pg_dump \
    "host=<host> \
    port=<port> \
    dbname=<database_name> \
    user=<user_name>" \
    --schema-only \
    --no-privileges \
    --no-subscriptions \
    --no-publications \
    -Fd -f <dump_directory>

    Specify:

    • <host> — IP address or DNS name of the cluster master node where the source database is located;
    • <port> — port;
    • <database_name> — source database name;
    • <user_name> — source database owner name;
    • <dump_directory> — dump directory.
  4. Restore the schema from the dump in the destination database using the pg_restore utility:

    pg_restore \
    -Fd -v \
    --single-transaction -s \
    --no-privileges -O \
    -h <host> \
    -U <user_name> \
    -p <port> \
    -d <database_name> \
    <dump_directory>

    Specify:

    • <host> — IP address or DNS name of the cluster master node where the destination database is located;
    • <user_name> — destination database user name;
    • <database_name> — destination database name;
    • <port> — port of the cluster where the destination database is located;
    • <dump_directory> — dump directory.
  5. Create a subscription in the destination database as a user with the dbaas_replication role:

    CREATE SUBSCRIPTION <subscription_name> CONNECTION
    'host=<host>
    port=<port>
    dbname=<database_name>
    user=<user_name>
    password=<password>
    sslmode=verify-ca'
    PUBLICATION <publication_name>
    WITH (copy_data=true, create_slot=false, enabled=true, slot_name=<logical_slot_name>);

    Specify:

    • <subscription_name> — subscription name;
    • <host> — IP address or DNS name of the cluster master node where the source database is located;
    • <port> — port of the cluster where the source database is located;
    • <user_name> — source database user name;
    • <password> — user password;
    • <database_name> — source database name;
    • <logical_slot_name> — logical replication slot name.
  6. Existing data will appear in the destination database table.

    If new data is added to the source database table, it will be replicated automatically.

  7. To stop logical replication, disable the subscription, detach the slot from it, and delete the subscription:

    ALTER SUBSCRIPTION <subscription_name> DISABLE;
    ALTER SUBSCRIPTION <subscription_name> SET (slot_name=NONE);
    DROP SUBSCRIPTION <subscription_name>;

    If you detach all subscriptions from a slot, information will accumulate in the slot and take up disk space. If the slot is not needed, delete it.

View the status of logical replication slots

  1. In the Dashboard, on the top menu, click Products and select Managed Databases.

  2. Open the Active tab.

  3. Open the cluster page → Databases tab.

  4. Open the database card.

  5. In the Replication Slots block, check the status in the slot row.

    CREATINGSlot is being created
    ACTIVESlot is in use — there is a consumer for the slot, and data is being transmitted to the destination database
    UNUSEDSlot is not in use — there is no consumer for the slot, data is not transmitted to the destination database, accumulates in the replication slot, and occupies additional disk space. If you no longer use the replication slot, delete it.
    DELETINGSlot is being deleted

Check logical replication slot consumers using an SQL query

To check if there are any consumers for logical replication slots, send an SQL query to the pg_replication_slots view:

SELECT slot_name, pg_size_pretty(pg_wal_lsn_diff(pg_current_wal_lsn(),restart_lsn)) AS replicationSlotLag,active
FROM pg_replication_slots;

Example output:

slot_name | replicationslotlag | active
-----------------+--------------------+--------
myslot1 | 129 GB | f
myslot2 | 704 MB | t
myslot3 | 624 MB | t

Where:

  • slot_name — logical replication slot name;
  • replicationslotlag — size of WAL files that will not be automatically deleted during checkpoints and that logical replication slot consumers may use;
  • active — boolean value indicating whether the logical replication slot is in use:
    • f — there is no consumer for the slot;
    • t — there is a consumer for the slot.

If you are using PostgreSQL version 13 or higher, you can limit the maximum size of stored WAL files using the max_slot_wal_keep_size parameter. Note that when using this parameter, the transaction log may be deleted before the consumer reads the changes in the logical replication slot.

Delete a logical replication slot

We recommend that you delete logical replication slots through the control panel or through the Managed Database API. If you delete a slot via a client connected to the database, the slot may not be deleted correctly.

  1. In the Dashboard, on the top menu, click Products and select Managed Databases.
  2. Open the Active tab.
  3. Open the cluster page → Databases tab.
  4. Open the database card.
  5. In the Replication Slots block, click in the slot row.