I am using postgres 12 and have a database thats 1TB in size. I am performing a big delete on a table that is 140+GB in size.
I am testing the process and am looking to do a pg_dump of the table and its contents however running as is takes approximately 33mins
pg_dump -d titan -t public.play > /backup/playBackup.sql
I know that pg_dump does include a --jobs option which given I have a 32 core machine could really utilise but that's to backup the database itself as opposed to a table in the database.
Is there a quicker way of backing up the table I need?