Sunday, December 19, 2010

Postgres Replication

Replication is the server process of copying data modifications from one location to another. The main characteristics of replication which make it appealing are:
  • The unit of replication is a transaction, not just an individual sequel (SQL) statement.
  • Replicated transactions are applied in the same order as they occurred on the primary side.
  • The replication system is able to detect whether a network connection is temporarily offline and when the component is available again. When a disruption like this occurs, the replication process should continue functioning without having to be adjusted.

No comments:

Post a Comment