PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come faccio a trasferire il database di produzione allo staging su Heroku usando pgbackups? Ottenere errore

Aggiornamento per metà 2017 (furto da Takehiro Mouri risposta - semplifica la parte DATABSE_NAME)

Aggiornamento per metà 2015...

Il componente aggiuntivo pgbackups è stato deprecato. Niente più pgbackups:transfer .

Per copiare un database da tuaapp a yourapp_staging :

# turn off the web dynos in staging
heroku maintenance:on -a yourapp-staging

# if you have non-web-dynos, do them too
heroku ps:scale worker=0 -a yourapp-staging

# backup the staging database if you are paranoid like me (optional)
heroku pg:backups capture -a yourapp-staging

# execute the copy
heroku pg:copy your-app::DATABASE_URL DATABASE_URL -a yourapp-staging

Quindi, al termine, riattiva lo staging:

# this is if you have workers, change '1' to whatever
heroku ps:scale worker=1 -a yourapp-staging

heroku maintenance:off -a yourapp-staging

(fonte:https:// devcenter.heroku.com/articles/upgrading-heroku-postgres-databases#upgrade-with-pg-copy-default )