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
2327690d
Commit
2327690d
authored
7 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
doc: Add logical replication to comparison matrix
Author: Steve Singer <steve@ssinger.info>
parent
a6b174f5
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/high-availability.sgml
+36
-7
36 additions, 7 deletions
doc/src/sgml/high-availability.sgml
with
36 additions
and
7 deletions
doc/src/sgml/high-availability.sgml
+
36
−
7
View file @
2327690d
...
@@ -111,7 +111,7 @@
...
@@ -111,7 +111,7 @@
</varlistentry>
</varlistentry>
<varlistentry>
<varlistentry>
<term>File System (Block
-
Device) Replication</term>
<term>File System (Block
Device) Replication</term>
<listitem>
<listitem>
<para>
<para>
...
@@ -158,6 +158,24 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -158,6 +158,24 @@ protocol to make nodes agree on a serializable transactional order.
</listitem>
</listitem>
</varlistentry>
</varlistentry>
<varlistentry>
<term>Logical Replication</term>
<listitem>
<para>
Logical replication allows a database server to send a stream of data
modifications to another server. <productname>PostgreSQL</productname>
logical replication constructs a stream of logical data modifications
from the WAL. Logical replication allows the data changes from
individual tables to be replicated. Logical replication doesn't require
a particular server to be designated as a master or a replica but allows
data to flow in multiple directions. For more information on logical
replication, see <xref linkend="logical-replication">. Through the
logical decoding interface (<xref linkend="logicaldecoding">),
third-party extensions can also provide similar functionality.
</para>
</listitem>
</varlistentry>
<varlistentry>
<varlistentry>
<term>Trigger-Based Master-Standby Replication</term>
<term>Trigger-Based Master-Standby Replication</term>
<listitem>
<listitem>
...
@@ -290,6 +308,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -290,6 +308,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry>Shared Disk Failover</entry>
<entry>Shared Disk Failover</entry>
<entry>File System Replication</entry>
<entry>File System Replication</entry>
<entry>Write-Ahead Log Shipping</entry>
<entry>Write-Ahead Log Shipping</entry>
<entry>Logical Replication</entry>
<entry>Trigger-Based Master-Standby Replication</entry>
<entry>Trigger-Based Master-Standby Replication</entry>
<entry>Statement-Based Replication Middleware</entry>
<entry>Statement-Based Replication Middleware</entry>
<entry>Asynchronous Multimaster Replication</entry>
<entry>Asynchronous Multimaster Replication</entry>
...
@@ -300,21 +319,23 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -300,21 +319,23 @@ protocol to make nodes agree on a serializable transactional order.
<tbody>
<tbody>
<row>
<row>
<entry>Most
C
ommon
I
mplementation</entry>
<entry>Most
c
ommon
i
mplementation
s
</entry>
<entry align="center">NAS</entry>
<entry align="center">NAS</entry>
<entry align="center">DRBD</entry>
<entry align="center">DRBD</entry>
<entry align="center">Streaming Repl.</entry>
<entry align="center">built-in streaming replication</entry>
<entry align="center">Slony</entry>
<entry align="center">built-in logical replication, pglogical</entry>
<entry align="center">Londiste, Slony</entry>
<entry align="center">pgpool-II</entry>
<entry align="center">pgpool-II</entry>
<entry align="center">Bucardo</entry>
<entry align="center">Bucardo</entry>
<entry align="center"></entry>
<entry align="center"></entry>
</row>
</row>
<row>
<row>
<entry>Communication
M
ethod</entry>
<entry>Communication
m
ethod</entry>
<entry align="center">shared disk</entry>
<entry align="center">shared disk</entry>
<entry align="center">disk blocks</entry>
<entry align="center">disk blocks</entry>
<entry align="center">WAL</entry>
<entry align="center">WAL</entry>
<entry align="center">logical decoding</entry>
<entry align="center">table rows</entry>
<entry align="center">table rows</entry>
<entry align="center">SQL</entry>
<entry align="center">SQL</entry>
<entry align="center">table rows</entry>
<entry align="center">table rows</entry>
...
@@ -330,6 +351,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -330,6 +351,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
</row>
</row>
<row>
<row>
...
@@ -337,6 +359,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -337,6 +359,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
...
@@ -348,6 +371,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -348,6 +371,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
...
@@ -359,6 +383,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -359,6 +383,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">with sync off</entry>
<entry align="center">with sync off</entry>
<entry align="center">with sync off</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
...
@@ -370,6 +395,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -370,6 +395,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">with sync on</entry>
<entry align="center">with sync on</entry>
<entry align="center">with sync on</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
...
@@ -377,10 +403,11 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -377,10 +403,11 @@ protocol to make nodes agree on a serializable transactional order.
</row>
</row>
<row>
<row>
<entry>
Standby
accept read-only queries</entry>
<entry>
Replicas
accept read-only queries</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">with hot</entry>
<entry align="center">with hot standby</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
...
@@ -393,6 +420,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -393,6 +420,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
...
@@ -403,6 +431,7 @@ protocol to make nodes agree on a serializable transactional order.
...
@@ -403,6 +431,7 @@ protocol to make nodes agree on a serializable transactional order.
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center">•</entry>
<entry align="center">•</entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
<entry align="center"></entry>
...
...
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