Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f378ccc2
Commit
f378ccc2
authored
Dec 01, 2006
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor wording improvements.
parent
da6daee2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
doc/src/sgml/high-availability.sgml
doc/src/sgml/high-availability.sgml
+9
-9
No files found.
doc/src/sgml/high-availability.sgml
View file @
f378ccc2
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.1
4 2006/11/22 18:15:34 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.1
5 2006/12/01 03:19:48 tgl
Exp $ -->
<chapter id="high-availability">
<title>High Availability and Load Balancing</title>
...
...
@@ -12,7 +12,7 @@
<para>
Database servers can work together to allow a second server to
quickly
take over quickly if the primary server fails (high
take over quickly if the primary server fails (high
availability), or to allow several computers to serve the same
data (load balancing). Ideally, database servers could work
together seamlessly. Web servers serving static web pages can
...
...
@@ -50,8 +50,8 @@
committed until all servers have committed the transaction. This
guarantees that a failover will not lose any data and that all
load-balanced servers will return consistent results no matter
which server is queried.
Asynchronous updating has a delay between
the time of
commit and its propagation to the other servers,
which server is queried.
In contrast, asynchronous solutions allow some
delay between the time of a
commit and its propagation to the other servers,
opening the possibility that some transactions might be lost in
the switch to a backup server, and that load balanced servers
might return slightly stale results. Asynchronous communication
...
...
@@ -101,7 +101,7 @@
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 the
current, but the mirroring must be done in a way that
ensures
the
standby server has a consistent copy of the file system.
</para>
...
...
@@ -159,10 +159,10 @@ protocol to make nodes agree on a serializable transactional order.
<para>
With statement-based replication middleware, a program intercepts
every SQL query and sends it to all servers. Each server
operates independently. Read-
only queries can be sent to a
single server because there is no need for all servers to
process it
.
every SQL query and sends it to
one or
all servers. Each server
operates independently. Read-
write queries are sent to all servers,
while read-only queries can be sent to just one server, allowing
the read workload to be distributed
.
</para>
<para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment