Ringo Blancke
Ringo Blancke

Reputation: 2444

Where does Heroku store its databases?

In light of the recent AWS outage (and thus Heroku outage), I started thinking a little bit more about the Heroku stack. I was wondering - where does Heroku store my DB exactly? I have the free postgres shared DB that they give with each app ... does that sit on some EC2 cloud somewhere? It is not RDS right, since those are all MySQL DBs...?

Thanks, Ringo

Upvotes: 2

Views: 368

Answers (2)

Will
Will

Reputation: 2951

EC2, with the write ahead logs continuously shipped to S3 via WAL-E.

Upvotes: 2

John Beynon
John Beynon

Reputation: 37507

They are on EC2 instances running Postgresql - they are not RDS as that is only MySql as you say.

Usually you can tell they are Amazon instances from the DATABASE_URL config variable that Heroku sets.

Upvotes: 0

Related Questions