May 2018
Intermediate to advanced
576 pages
30h 25m
English
max_replication_slots = 2
SELECT (pg_create_physical_replication_slot('alpha_beta_1', true)).wal_position;wal_position----------------- 0/5000060
SELECT * FROM pg_replication_slots;
primary_slot_name = 'alpha_beta_1'
Slots can be removed using the following query:
SELECT pg_drop_physical_replication_slot('alpha_beta_1'); ...