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
ffa0e8f0
Commit
ffa0e8f0
authored
18 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add mention of shared-memory/disk for multi-master clustering.
parent
617f123f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/high-availability.sgml
+8
-6
8 additions, 6 deletions
doc/src/sgml/high-availability.sgml
with
8 additions
and
6 deletions
doc/src/sgml/high-availability.sgml
+
8
−
6
View file @
ffa0e8f0
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.
8
2006/11/2
1 22:48:33
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.
9
2006/11/2
2 03:44:52
momjian Exp $ -->
<chapter id="high-availability">
<title>High Availability and Load Balancing</title>
...
...
@@ -193,11 +193,13 @@ protocol to make nodes agree on a serializable transactional order.
other server before each transaction commits. Heavy write
activity can cause excessive locking, leading to poor performance.
In fact, write performance is often worse than that of a single
server. Read requests can be sent to any server. Clustering
is best for mostly read workloads, though its big advantage
is that any server can accept write requests — there is
no need to partition workloads between master and slave servers,
and because the data changes are sent from one server to another,
server. Read requests can be sent to any server. Some
implementations use cluster-wide shared memory or shared disk
to reduce the communication overhead. Clustering is best for
mostly read workloads, though its big advantage is that any
server can accept write requests — there is no need to
partition workloads between master and slave servers, and
because the data changes are sent from one server to another,
there is no problem with non-deterministic functions like
<function>random()</>.
</para>
...
...
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