Postgres documentation states the following regarding pg_replication_slots.active
: True if this slot is currently actively being used
.
What does this actually imply for a false value?
For example, will the WAL still stick around if the value is false? Can I then set to true and it will continue to replicate from where it left off?
From all of my personal exploration it appears that even with an active=False
replication slot:
active=False
.active
to True
.active=True
.