Re: Database cluster?

Поиск
Список
Период
Сортировка
От Steve Wolfe
Тема Re: Database cluster?
Дата
Msg-id 002701c05b1a$d95b71e0$50824e40@iboats.com
обсуждение исходный текст
Ответ на Re: Database cluster?  (Peter Korsgaard <jacmet@control.auc.dk>)
Ответы Re: Database cluster?  (Peter Korsgaard <jacmet@control.auc.dk>)
Список pgsql-general
> The proxy monitors and forwards the requests from the clients to the
> database servers. If it is a read-only request the query is forwarded to
> the databaseserver currently experiencing the lowest load/most free
> memory, otherwise it is sent to all database servers.
>
> This approach obviously only performs well in systems with a high ratio of
> read-only queries, such as search engines and so on.

  The tough part is syncronicity, should one of the machines drop out of the
cluster and need to be re-added without bringing the others down.  In order
to get around that, each query needs to be logged on the master node with a
timestamp, so that the failed node can "catch up" in real-time.  That brings
about other considerations, as well....

steve



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

Предыдущее
От: Joel Bernstein
Дата:
Сообщение: Transaction logging
Следующее
От: Joe Kislo
Дата:
Сообщение: Re: Unanswered questions about Postgre