Live data from Hacker News

PostgreSQL 9.0 Final Release Available Now

postgresql.org

1–10 of 26 posts

Re: PostgreSQL 9.0 Final Release Available Now

#5

Why use hot-standby over streaming replication or visa-versa?

It's a free upgrade from warm standby, whereas SR requires a little more configuration. A good SR cluster also requires that log archiving (warm/hot standby) be set up in case the stream gets behind, otherwise you're at the mercy of whatever happens to be in the master's xlog.

Re: PostgreSQL 9.0 Final Release Available Now

#7

Why use hot-standby over streaming replication or visa-versa?

Hot-Standby: Ability to query against what used to be Warm-Standby boxes which were for disaster recovery only. Streaming Replication: sending log data over sockets instead of relying on shell commands to send logfiles over.

They work together to make for happy master-slave replication.

It's worth noting this is database server level. Hot-standby copies 100% of a PostgreSQL instance. If you want to replicate individual databases on a server or individual tables in a database, Longdiste, Bucardo or Slony are still the way to go.

Re: PostgreSQL 9.0 Final Release Available Now

#9

Can anybody point to a good discussion about the strengths and weaknesses of PostgreSQL relative to MySQL? Or can you weigh in briefly about the tradeoffs between the two? EDIT: Okay, must've touched a few nerves there. Sorry. Question was asked in earnest.

Of all the flamewar subjects, I think that one is just about the most tried and true one.

Re: PostgreSQL 9.0 Final Release Available Now

#10
post #9

Can anybody point to a good discussion about the strengths and weaknesses of PostgreSQL relative to MySQL? Or can you weigh in briefly about the tradeoffs between the two? EDIT: Okay, must've touched a few nerves there. Sorry. Question was asked in earnest.

Of all the flamewar subjects, I think that one is just about the most tried and true one.

I wasn't trying to start a flamewar! I'm just coding up my first major project and needed help deciding, specifically which one plays better with django.
Post reply on HN