As pre-requisite for incremental backup feature the below two parameters should be set first: postgres=# show summarize_wal; summarize_wal on postgres=# show wal_level; wal_level replica if summarize_wal parameter not set then set it and you will need to restart postgres instance to take affect. postgres=# ALTER SYSTEM SET summarize_wal = on; To perform a simulation i …
Continue reading “How Take Incremental Backup in PostgreSQL 17 Guide”