From c7a6046a59b7bd23b7489f3549e035e820d7fc36 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 16 Nov 2006 18:25:58 +0000 Subject: [PATCH] Clarify replication items, and define some terms. --- doc/src/sgml/failover.sgml | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/doc/src/sgml/failover.sgml b/doc/src/sgml/failover.sgml index 2c27bff156..901ad8e769 100644 --- a/doc/src/sgml/failover.sgml +++ b/doc/src/sgml/failover.sgml @@ -1,4 +1,4 @@ - + Failover, Replication, Load Balancing, and Clustering Options @@ -32,6 +32,18 @@ minimizes its impact for a specific workload. + + Some solutions deal with synchronization by allowing only one + server to modify the data. Servers that can modify data are + called read/write or "master" server. Servers with read-only + data are called backup or "slave" servers. As you will see below, + these terms cover a variety of implementations. Some servers + are masters of some data sets, and slave of others. Some slaves + cannot be accessed until they are changed to master servers, + while other slaves can reply to read-only queries while they are + slaves. + + Some failover and load balancing solutions are synchronous, meaning that a data-modifying transaction is not considered committed until all @@ -118,15 +130,20 @@ Data Partitioning - Data partitioning splits tables into data sets. Each set can only be - modified by one server. For example, data can be partitioned by - offices, e.g. London and Paris. While London and Paris servers have all - data records, only London can modify London records, and Paris can only - modify Paris records. + Data partitioning splits tables into data sets. Each set can + be modified by only one server. For example, data can be + partitioned by offices, e.g. London and Paris. While London + and Paris servers have all data records, only London can modify + London records, and Paris can only modify Paris records. This + is similar to section above, except + that instead of having a read/write server and a read-only server, + each server has a read/write data set and a read-only data + set. - Such partitioning implements both failover and load balancing. Failover + Such partitioning provides both failover and load balancing. Failover is achieved because the data resides on both servers, and this is an ideal way to enable failover if the servers share a slow communication channel. Load balancing is possible because read requests can go to any