简体   繁体   中英

Postgres pg_dump times out

I am running this command on Webfaction:

ionice -c2 -n6 pg_dump --blobs -U mhjohnson_flavma -f dump.sql

pg_dump: SQL command failed
pg_dump: Error message from server: ERROR: canceling statement due to statement timeout

Any ideas on how to change the timeout?

Your server probably has statement-timeouts configured in one way or another. (cf. here )

As a quick solution, you could use PGOPTIONS="-c statement_timeout=0" pg_dump [...] to temporarily overwrite this setting for the dumping process.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM