Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 52096ae

Browse files
committed
Mention file system replication as a high availability solution in the
shared hardware section, and mention DRBD as a popular solution.
1 parent a9d5fb5 commit 52096ae

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

doc/src/sgml/high-availability.sgml

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.15 2006/12/01 03:19:48 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.16 2007/02/01 21:02:48 momjian Exp $ -->
22

33
<chapter id="high-availability">
44
<title>High Availability and Load Balancing</title>
@@ -99,10 +99,17 @@
9999
disk array fails or becomes corrupt, the primary and standby
100100
servers are both nonfunctional. Another issue is that the
101101
standby server should never access the shared storage while
102-
the primary server is running. It is also possible to use
103-
some type of file system mirroring to keep the standby server
104-
current, but the mirroring must be done in a way that ensures the
105-
standby server has a consistent copy of the file system.
102+
the primary server is running.
103+
</para>
104+
105+
<para>
106+
A modified version of shared hardware functionality is file system
107+
replication, where all changes to a file system are mirrored to a file
108+
system residing on another computer. The only restriction is that
109+
the mirroring must be done in a way that ensures the standby server
110+
has a consistent copy of the file system &mdash; specifically, writes
111+
to the standby must be done in the same order as those on the master.
112+
DRBD is a popular file system replication solution for Linux.
106113
</para>
107114

108115
<!--

0 commit comments

Comments
 (0)