November 2019
Beginner to intermediate
470 pages
11h 59m
English
The first thing we want to do in this chapter is create a configuration to perform standard point-in-time recovery (PITR). There are a couple of advantages of using PITR over ordinary dumps:
Configuring for PITR is easy. Just a handful of changes have to be made in the postgresql.conf file:
wal_level = replica # used to be "hot_standby" in older versions max_wal_senders = 10 # at least 2, better at least 2
The wal_level variable says that the server is supposed to produce ...
Read now
Unlock full access