May 2018
Intermediate to advanced
576 pages
30h 25m
English
This recipe assumes that you have already set up replication according to the earlier recipes so that wal_level, max_wal_senders, and other parameters are set. Remember that for pg_recvlogical, you must set wal_level to logical.
This recipe is a different way of archiving WAL files than using archive_command, so you will likely want to unset that parameter if you use this recipe.
You will need to configure security just as you did for replication. So, you will need a PostgreSQL connection string, just as before.
Decide where you want to put the data on the client. Remember that WAL files look the same for each server, so you need to put them in a directory with a useful name so that you don't confuse files from different servers. ...