Skip to main content

PostgreSQL - Backup & Point In Time Recovery

 In this post you will learn about how to restore a PostgreSQL database in Point in time.

  • Allow you to restore database to a specific moment in time PITR.
  • It make use of live database files and WAL files.
  • This method can only backup and restore the whole cluster, for individual database use pg_dump.
  • It can be done when the DB is online.

Step 1. If archive logs not enable then enable it, otherwise go to Step3.

Create Directory for archive logs

Step2. Restart the cluster

Pg_ctl status -D /Clusterpath

Step3. Insert some data into database

Create table and insert data into it

create table happy ( id integer, Ename varchar(20)) ;

Check if the data inserted properly.

Step4. Archive the logs

select pg_switch_wal();

Step 5. Take the base backup

I am taking the base backup at /postgres/postgres12.2/backup/basebackup

Step6- Stop DB and Delete the cluster.

#pg_ctl stop -D /postgres/postgres12.2/data/

Step 7 Restore the Database server

Make sure directories are there before importing. Restore Data folder and WAL folder.

Step8 — Start the server

./pg_ctl start -D /postgres/postgres12.2/data

Step9- PITR steps

  • Take the base backup
  • At this moment there are only 2 rows in HAPPY table, Insert more rows
  • Delete the data directory.
  • Restore the DATA directory from Backup
  • Create recovery.signal file and Add parameters

Comments

Popular posts from this blog

PostgreSQL Vacuum and Vacuum full are not two different processes

  PostgreSQL’s   VACUUM   and   VACUUM FULL   are not separate processes but rather different operational modes of the same maintenance command. Here’s why: Core Implementation Both commands share the same underlying codebase and are executed through the  vacuum_rel()  function in PostgreSQL’s source code ( src/backend/commands/vacuum.c ). The key distinction lies in the  FULL  option, which triggers additional steps: Standard  VACUUM : Removes dead tuples (obsolete rows) and marks space reusable  within PostgreSQL Updates the visibility map to optimize future queries Runs concurrently with read/write operations VACUUM FULL : Rewrites the entire table into a new disk file, compressing it and reclaiming space for the  operating system Rebuilds all indexes and requires an  ACCESS EXCLUSIVE  lock, blocking other operations Key Differences in Behavior Aspect Standard VACUUM VACUUM FULL Space Reclamation Internal reuse onl...

Job scheduler for PostgreSQL "pg_cron"

What is pg_cron   : -   pg_cron is a simple cron-based job scheduler for   PostgreSQL (9.5 or higher)   that runs inside the database as an extension. It uses the same syntax as regular cron, but it allows you to schedule PostgreSQL commands directly from the database . Why We need it ? Running periodic maintenance jobs or removing old data is a common requirement in PostgreSQL. A simple way to achieve this is to configure cron or another external daemon to periodically connect to the database and run a command. Let's see how it's works  Step 1 :-  For implementing/Installation of pg_cron you need to download source code from git Dowload link  export PATH=/usr/local/pgsql/bin:$PATH wget https://github.com/citusdata/pg_cron/archive/master.zip unzip master cd pg_cron-master/ make make install    Step 2 : - To start the pg_cron background worker when PostgreSQL starts, you need to add pg_cron to  shared_preload_libraries   in post...

PostgreSQL Health Check - Performance Audit and Recommendations

   PostgreSQL Server Capacity Planning and Optimization: Conduct a thorough assessment of current and projected workload demands on the database server's critical resources. This evaluation should cover key factors such as CPU utilization, RAM consumption, storage requirements, I/O performance, and network bandwidth usage. Consider both short-term fluctuations and long-term usage patterns to accurately forecast future needs and potential bottlenecks. Collect and analyze performance metrics over extended periods, including peak and off-peak hours, to gain a comprehensive understanding of server behavior. Use appropriate monitoring tools to gather detailed data on query execution times, resource utilization patterns, and system responsiveness under varying loads. Identify recurring performance issues, resource contention points, or capacity limitations that may affect the overall efficiency of the PostgreSQL environment. Based on this analysis, develop actionable recommendations...