Skip to content

Commit 8e5babd

Browse files
fix(rdb): review hugo
Co-authored-by: Hugo DUBOIS <[email protected]>
1 parent 9fc6318 commit 8e5babd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pages/managed-databases-for-postgresql-and-mysql/api-cli/logical-replication-as-publisher.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Setting up logical replication as a publisher in PostgreSQL
33
description: Learn how to set up and use logical replication as a publisher in PostgreSQL
4-
tags: postgresql logical replication publisher migration database
4+
tags: postgresql logical replication publisher publication database
55
dates:
66
validation: 2025-08-25
77
posted: 2025-02-20
@@ -40,8 +40,8 @@ Follow the steps in the [How to manage users](/managed-databases-for-postgresql-
4040

4141
To create publications and replication slots, the `replication_user` must:
4242

43-
- Either be an admin user (`rdb_admin`)
44-
- Or be granted the following rights from an `rdb_admin`:
43+
- Either be an member of admin user role (`_rdb_admin`)
44+
- Or be granted the following rights from a role member of the`_rdb_admin` role:
4545
- `ALTER replication_user with REPLICATION`
4646
- `GRANT CREATE ON DATABASE my_database TO my_replication_user;`
4747

@@ -117,8 +117,8 @@ We use an example scenario to show how logical replication can be set up.
117117
```
118118
</Message>
119119

120-
- If a logical replication is not active but still consumed by a subscription or other tool, PostgreSQL WAL files will accumulate in the primary node, filling up storage. In the worst case scenario, your database can be set to read only mode (check disk full section).
120+
- If a logical replication is not active (not consumed by a subscription or other tool), PostgreSQL WAL files will accumulate in the primary node, filling up storage. In the worst case scenario, your database can be set to read only mode (check disk full section) or unavailable.
121121
<Message type="tip">
122-
- We recommend you delete any replications that are no longer used.
122+
- We recommend you delete any replication slots that are no longer used.
123123
- If a logical replication is inactive for 24h, it will be automatically removed.
124124
</Message>

0 commit comments

Comments
 (0)