Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/connectors/on-prem-databases/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ When using PostgreSQL as the target database or obtaining incremental data via t
:::

- [Decoderbufs](https://github.com/debezium/postgres-decoderbufs): Suitable for PostgreSQL 9.6 and above, uses Google Protocol Buffers to parse WAL logs but requires more complex configuration.
- [Walminer](https://gitee.com/movead/XLogMiner/tree/master/): Does not rely on logical replication, doesn't require setting `wal_level` to `logical`, or adjusting replication slot configuration, but requires superuser permissions.
- [Walminer](https://gitee.com/movead/XLogMiner/tree/master/): Does not rely on logical replication, doesn't require setting `wal_level` to `logical`, or adjusting replication slot configuration, but requires superuser permissions. In a **replication architecture**, we recommend using the **Walminer** plugin to read incremental changes to ensure data integrity during failover.

Next, we will demonstrate the installation process using **Wal2json** as an example.

Expand Down Expand Up @@ -491,4 +491,4 @@ When configuring data synchronization/conversion tasks, you can use PostgreSQL a

-- Delete the Slot node
select * from pg_drop_replication_slot('tapdata');
```
```
Loading