aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-02-01 21:03:00 +0000
committerBruce Momjian <bruce@momjian.us>2007-02-01 21:03:00 +0000
commit14a866b18d6becb896b827ca6d9537b8d3572bf1 (patch)
tree7068dce6c6866de871be580d34950266974e6761
parentb7c9821146145688477d9e09bb5a176bf1378d0b (diff)
downloadpostgresql-14a866b18d6becb896b827ca6d9537b8d3572bf1.tar.gz
postgresql-14a866b18d6becb896b827ca6d9537b8d3572bf1.zip
Mention file system replication as a high availability solution in the
shared hardware section, and mention DRBD as a popular solution.
-rw-r--r--doc/src/sgml/high-availability.sgml17
1 files changed, 12 insertions, 5 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml
index 01d2c90207e..df0af45e1b0 100644
--- a/doc/src/sgml/high-availability.sgml
+++ b/doc/src/sgml/high-availability.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.15 2006/12/01 03:19:48 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.15.2.1 2007/02/01 21:03:00 momjian Exp $ -->
<chapter id="high-availability">
<title>High Availability and Load Balancing</title>
@@ -99,10 +99,17 @@
disk array fails or becomes corrupt, the primary and standby
servers are both nonfunctional. Another issue is that the
standby server should never access the shared storage while
- the primary server is running. It is also possible to use
- some type of file system mirroring to keep the standby server
- current, but the mirroring must be done in a way that ensures the
- standby server has a consistent copy of the file system.
+ the primary server is running.
+ </para>
+
+ <para>
+ A modified version of shared hardware functionality is file system
+ replication, where all changes to a file system are mirrored to a file
+ system residing on another computer. The only restriction is that
+ the mirroring must be done in a way that ensures the standby server
+ has a consistent copy of the file system &mdash; specifically, writes
+ to the standby must be done in the same order as those on the master.
+ DRBD is a popular file system replication solution for Linux.
</para>
<!--