Re: postgre vs MySQL

From: David Wall <d(dot)wall(at)computer(dot)org>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: postgre vs MySQL
Date: 2008-03-12 21:08:45
Message-ID: 47D8465D.30006@computer.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


> Well, if you have a crappy system that cannot sustain concurrent load or
> even be backed up concurrently with regular operation, one solution is
> to write a kick-ass replication system.
>
Still, it would be nice to have a kick-ass replication system for PG,
too. We've been toying with WAL archiving and backup db recovery, which
works pretty well it seems as it appears to support all of our tables
(not just those with an explicit primary key) and does the DDL stuff for
creating/altering/dropping tables, columns, etc.

The downside is that the backup is not operational in order to run even
run a SELECT against, and because it's asynchronous in nature, there's
always a window of data loss for transactions written to the WAL that
haven't been archived yet.

David

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2008-03-12 21:20:32 Re: table size in 8.3
Previous Message Magnus Hagander 2008-03-12 21:08:38 Re: PostgreSQL won't start