Get your database ready for log based syncs with Nekt.
postgresql.conf
configurations:
wal_level = logical
max_replication_slots = 10
max_wal_senders = 10
If you are using RDS, this can be done through parameter groups. After you change the parameter group, reseting the database is required.
SELECT * FROM pg_create_logical_replication_slot('nekt', 'wal2json');
If you encounter any issues, reach out to us via Slack, and we’ll gladly assist you!