Loading…
Physical vs Logical Backups in PostgreSQL
SupabaseAngelico de los Reyes
Summary
PostgreSQL backups fall into two distinct categories: logical backups, which convert data into SQL command files, and physical backups, which copy the underlying file system storage. Logical backups generated with pg_dump or pg_dumpall allow single-database targeting and provide the only practical route for migrating across major Postgres versions with differing internal storage formats. Conversely, physical backups suit larger databases where long-running logical exports can degrade concurrent query performance and risk failure. Physical backups also integrate with Write Ahead Log files through tools like WAL-G to support Point in Time Recovery and minimize Recovery Point Objectives. Selecting between these two strategies depends on whether administrative simplicity, version portability, cluster size, or precise disaster recovery takes precedence.
Context
Database administrators need appropriate backup strategies for PostgreSQL databases depending on database size, migration requirements, and recovery point objectives.
Approach / What changed
PostgreSQL supports logical backups via SQL export utilities like pg_dump and pg_dumpall, as well as physical backups created by copying underlying data files and pairing them with Write Ahead Log files.
Takeaways
- Logical backups generated via pg_dump or pg_dumpall export SQL commands, making them essential for migrating across major PostgreSQL versions where internal storage formats differ.
- Running logical backups on databases larger than a few gigabytes risks degraded query performance, long execution times, and errors that can render the backup unusable.
- Physical backups combined with Write Ahead Log files enable Point in Time Recovery, which minimizes Recovery Point Objectives during disaster recovery.
Related reading
Supabase ·
PostgREST 9
PostgREST 9 introduces several core updates to the tool that turns PostgreSQL databases into RESTful APIs. Developers can now perform inner joins when embedding tables using the !inner keyword, allowing top-level table rows to be filtered directly by embedded table attributes across multiple operators. The release also adds support for POST requests to functions containing a single unnamed parameter, which simplifies handling raw JSON payloads sent by external webhooks. To ensure compatibility with PostgreSQL 14, custom authentication functions accessing HTTP context headers and JWT claims must be updated to parse JSON properties from consolidated settings. Additional enhancements included in this version provide support for partitioned tables alongside documentation improvements and bug fixes.
Steve ChavezSupabase ·
Protecting reserved roles with PostgreSQL Hooks
Supabase required granting database customers the CREATEROLE privilege to manage custom roles while preventing them from dropping or altering backend service roles such as supabase_storage_admin. Because stock PostgreSQL lacks a native mechanism to define custom reserved roles, the team created the SupaUtils extension using PostgreSQL hooks. Loaded via shared_preload_libraries, SupaUtils intercepts utility statements by overriding the global ProcessUtility_hook function pointer. The extension inspects incoming statements like ALTER ROLE and DROP ROLE against a configurable list defined in postgresql.conf using DefineCustomStringVariable. If a targeted role matches the configured reserved roles, the hook raises an error, preserving backend infrastructure roles while permitting broader role administration.