Created
October 26, 2022 11:09
-
-
Save dsouzajude/8d2bf7b3f25874c58daf31a9d10c8d60 to your computer and use it in GitHub Desktop.
Parameter values to enable logical replication and tweaking for performance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### postgresql.conf | |
# Required to enable logical replication | |
wal_level = logical | |
# Tweaks | |
max_wal_senders = 35 | |
max_worker_processes = 35 | |
max_replication_slots = 35 | |
max_logical_replication_workers = 35 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment