Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
c7a6046a
Commit
c7a6046a
authored
18 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Clarify replication items, and define some terms.
parent
e05a3c30
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/failover.sgml
+24
-7
24 additions, 7 deletions
doc/src/sgml/failover.sgml
with
24 additions
and
7 deletions
doc/src/sgml/failover.sgml
+
24
−
7
View file @
c7a6046a
<!-- $PostgreSQL: pgsql/doc/src/sgml/failover.sgml,v 1.
6
2006/11/1
5 01:09:0
8 momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/failover.sgml,v 1.
7
2006/11/1
6 18:25:5
8 momjian Exp $ -->
<chapter id="failover">
<title>Failover, Replication, Load Balancing, and Clustering Options</title>
...
...
@@ -32,6 +32,18 @@
minimizes its impact for a specific workload.
</para>
<para>
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.
</para>
<para>
Some failover and load balancing solutions are synchronous, meaning that
a data-modifying transaction is not considered committed until all
...
...
@@ -118,15 +130,20 @@
<title>Data Partitioning</title>
<para>
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 <xref
linkend="continuously-running-replication-server"> 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.
</para>
<para>
Such partitioning
implement
s both failover and load balancing. Failover
Such partitioning
provide
s 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment