Re: Database syncronization

Поиск
Список
Период
Сортировка
От Steve Crawford
Тема Re: Database syncronization
Дата
Msg-id 200504201000.57192.scrawford@pinpointresearch.com
обсуждение исходный текст
Ответ на Database syncronization  (Shadow <shadow@s3os.net>)
Список pgsql-admin
On Wednesday 20 April 2005 9:44 am, Shadow wrote:
> Hy all !
>
> Is there any tool, middelware, or feature to syncronize 2 databases
> (With the same schema, ofcourse)
>
> I have an application that runs from 2 points. One of this points
> has a master database and the other point neds to sync its data
> daily from the master.

There are several options depending on your needs.

If you just need a second machine updated daily then just do a
pg_dumpall from the master and restore it on the second machine (all
automated from cron).

Alternately, in 8.x you can copy the master's files to the second
machine and then just use the WAL files to keep the second machine
up-to-date. If you like this option check the backup section of the
documentation, especially section 22.3, to read about on-line backup
and recovery.

For near real-time replication you can use a replication solution like
slony-i.

All of the above assume that all modifications to the database are
done to the master and simply duplicated one way or another to a
slave.

There are also projects that act as connection-pooling and
load-balancing solutions that write all changes to multiple
databases. I believe dbbalancer is one but it is listed as "Alpha"
and the last update was in 2002.

Cheers,
Steve

В списке pgsql-admin по дате отправления:

Предыдущее
От: John DeSoi
Дата:
Сообщение: Re: Database syncronization
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: help