diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2020-07-31 07:18:41 +0900 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2020-07-31 07:18:41 +0900 |
commit | cab2556f3ab289b81a9c6a75e669b6ec78356ffc (patch) | |
tree | 6fad7eebbe4c5caefee4cf24a8e6c5c5140d2e90 | |
parent | fd734f387d8780d9989d750942d026167de8cf3c (diff) | |
download | postgresql-cab2556f3ab289b81a9c6a75e669b6ec78356ffc.tar.gz postgresql-cab2556f3ab289b81a9c6a75e669b6ec78356ffc.zip |
Doc: fix high availability solutions comparison.
In "High Availability, Load Balancing, and Replication" chapter,
certain descriptions of Pgpool-II were not correct at this point. It
does not need conflict resolution. Also "Multiple-Server Parallel
Query Execution" is not supported anymore.
Discussion: https://postgr.es/m/20200726.230128.53842489850344110.t-ishii%40sraoss.co.jp
Author: Tatsuo Ishii
Reviewed-by: Bruce Momjian
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 89f6d6eda63..a824d383f2d 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -429,7 +429,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> @@ -471,8 +471,7 @@ protocol to make nodes agree on a serializable transactional order. concurrently on a single query. It is usually accomplished by splitting the data among servers and having each server execute its part of the query and return results to a central server where they - are combined and returned to the user. <productname>Pgpool-II</productname> - has this capability. Also, this can be implemented using the + are combined and returned to the user. This can be implemented using the <productname>PL/Proxy</productname> tool set. </para> |