user782220
user782220

Reputation: 11207

How do I setup replication of Postgres on Heroku?

What is the best practice on Heroku for setting up data replication for Postgres so that if the harddrive where my master database is on crashes there is a replica of the data?

Upvotes: 3

Views: 2519

Answers (1)

John Beynon
John Beynon

Reputation: 37507

You want to use a Postgres Follower database that Heroku provides - it's an async read only replication.

https://devcenter.heroku.com/articles/heroku-postgres-follower-databases

Upvotes: 5

Related Questions