-
Book Overview & Buying
-
Table Of Contents
Learning PostgreSQL
By :
PostgreSQL provides enterprise-level services which guarantee the continuation of the business.
Replication allows data from one database server to be replicated to another server. Replication is used mainly to achieve the following:
PostgreSQL supports replication out of the box via streaming replication. Streaming replication is a master-slave replication that uses file-based log shipping. Streaming replication is a binary replication technique, because SQL statements are not analyzed. It is based on taking a snapshot of the master node, and then shipping the changes—the WAL files—from the master node to the slave node and replaying them on the slave. The master can be used for read/write operations, and the slave can be...