(no title)
throwaway342526 | 10 years ago
1) As a relational query engine first and foremost. Postgres wins handily here, leaving people wondering "why use Mysql."
2) As a reliable replicated datastore, which perhaps happens to be queried via SQL or some rough approximation thereof.
One item you didn't mention is how the replication chain behaves in the event of a node failure. With Postgres, yes, you can promote a slave to master, but last I checked (~2 years ago) promoting a slave to master would break replication to all other slaves, causing a complete loss of redundancy in your entire cluster. I believe this may have been addressed recently; I know folks were working on it.
Going back slightly further in history, Postgres has always lagged far behind Mysql in terms of replication tools and ability. What Postgres has going for it is a far, far superior SQL environment. Which is fantastic; I absolutely prefer it as a developer. But it can be a complete non-starter operationally and architecturally.
ntqz|10 years ago
paulryanrogers|10 years ago