hi,
I have create a ticket :
and this topic is related to that.
if I use pg_dumpall to backup and restore DB from 9.3.6 to 11.14:
pg_dumpall -U postgres -p 5432 --jobs=8 > <output file.sql>
it will say :
pg_dumpall: illegal option -- jobs=8
Try "pg_dumpall --help" for more information.
for Pg_dump, we can optimize the backup progress by adding --jobs=N, can how we do the same thign for pg_dumpall?
This is impossible, as pg_dumpall has no --jobs option.
Then run pg_dump against each database, as pg_dump does support the --jobs option.