pg_repack
principle pg_repack 1.5.0 – Reorganize tables in PostgreSQL databases with minimal locks https://github.com/reorg/pg_repack create a log table to record changes made to the original table add a trigger onto the original table, logging INSERTs, UPDATEs and DELETEs into our log table create a new table containing all the rows in the old table build indexes on this new table apply all changes which have accrued in the log table to the new table swap the tables, including indexes and toast tables, using the system catalogs drop the original table The basic idea is...