Skip to content

Commit 703866d

Browse files
authored
[clickpipes] Link blog and parameter fix (#3049)
1 parent fab6d19 commit 703866d

File tree

1 file changed

+3
-1
lines changed
  • docs/en/integrations/data-ingestion/clickpipes/postgres

1 file changed

+3
-1
lines changed

docs/en/integrations/data-ingestion/clickpipes/postgres/faq.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If you're noticing that the size of your Postgres replication slot keeps increas
7575

7676
2. **Long-Running Transactions**
7777
- An open transaction forces Postgres to keep all WAL segments generated since the transaction began, which can dramatically increase slot size.
78-
- Set `session_timeout` and `idle_in_transaction_session_timeout` to reasonable values to prevent transactions from staying open indefinitely:
78+
- Set `statement_timeout` and `idle_in_transaction_session_timeout` to reasonable values to prevent transactions from staying open indefinitely:
7979
```sql
8080
SELECT
8181
pid,
@@ -102,3 +102,5 @@ If you're noticing that the size of your Postgres replication slot keeps increas
102102
5. **Replication Consumer Not Actively Reading the Slot**
103103
- If your CDC pipeline (e.g., ClickPipes) or another replication consumer stops, pauses, or crashes, WAL data will accumulate in the slot.
104104
- Ensure your pipeline is continuously running and check logs for connectivity or authentication errors.
105+
106+
For an excellent deep dive into this topic, check out our blog post: [Overcoming Pitfalls of Postgres Logical Decoding](https://blog.peerdb.io/overcoming-pitfalls-of-postgres-logical-decoding#heading-beware-of-replication-slot-growth-how-to-monitor-it).

0 commit comments

Comments
 (0)