Mention file system replication as a high availability solution in the
authorBruce Momjian <bruce@momjian.us>
Thu, 1 Feb 2007 21:03:00 +0000 (21:03 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 1 Feb 2007 21:03:00 +0000 (21:03 +0000)
shared hardware section, and mention DRBD as a popular solution.

doc/src/sgml/high-availability.sgml

index 0f1261371bf41e96d906389a8351ecfdc885ee31..93bf732254399cbec2b94a810f9bcbf4ecf3deef 100644 (file)
     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>
 
 <!--