Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
1–10 of 12 posts
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#2Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#3I was expecting to see https://github.com/dimitri/pgcopydb when clicking this. How is this different?
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#4I was expecting to see https://github.com/dimitri/pgcopydb when clicking this. How is this different?
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#5I was expecting to see https://github.com/dimitri/pgcopydb when clicking this. How is this different?
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#6I was expecting to see https://github.com/dimitri/pgcopydb when clicking this. How is this different?
OP here. pgcopydb is also a great tool. It does pg_dump|pg_restore. It cannot multi-thread (parallelize) single table data migration
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#7Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#8I was expecting to see https://github.com/dimitri/pgcopydb when clicking this. How is this different?
OP here. pgcopydb is also a great tool. It does pg_dump|pg_restore. It cannot multi-thread (parallelize) single table data migration
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#9Several years ago at a company I no longer work at, when we swapped from single-threaded pgdumps (from a replica) to multi-threaded pgdumps (-j flag), we occasionally saw some dumps which were "inconsistent". Not sure if that's the best term for it, but we would occasionally get duplicate foreign key errors on pg_restore or even if pg_restore succeeded, sometimes primary key sequences would be less than the maximum i…
Re: Parallel Snapshotting: make pg_dump and pg_restore multi-threaded per table
#10I was expecting to see https://github.com/dimitri/pgcopydb when clicking this. How is this different?
does pgcopydb support copying a single table in multiple threads?