I am currently using Postgres 12.6 Enterprisedb version. I have a disaster recovery database that is synchronized with the production database in read-only mode. Now, I want to temporarily break the synchronization and open the disaster recovery database in read-write mode for a specific duration. Afterwards, I plan to sync it back to the production database. Are there any mechanisms available in PostgreSQL that allow me to pause or stop the Write-Ahead Logging (WAL) process temporarily? Alternatively, I am also curious if PostgreSQL has a concept similar to Oracle's file flashback feature.
Basically break the sync for temporary open in read-write mode and again back to sync with prod