From a180302d8f55278fedc39ba8f3a4ffc3ff9fd4a6 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Tue, 22 Dec 2020 13:52:01 +0900 Subject: [PATCH] Doc: Add missing raw mode to "5.3. Clustering mode" and fix typos. --- doc.ja/src/sgml/connection-settings.sgml | 17 ++++++++++++++--- doc.ja/src/sgml/loadbalance.sgml | 2 +- doc.ja/src/sgml/ssl.sgml | 2 +- doc/src/sgml/connection-settings.sgml | 23 +++++++++++++++++------ 4 files changed, 33 insertions(+), 11 deletions(-) diff --git a/doc.ja/src/sgml/connection-settings.sgml b/doc.ja/src/sgml/connection-settings.sgml index 13ddd4eda..9d6907c98 100644 --- a/doc.ja/src/sgml/connection-settings.sgml +++ b/doc.ja/src/sgml/connection-settings.sgml @@ -654,8 +654,8 @@ backend_clustering_mode = 'logical_replication' backend_clustering_mode = 'slony' - このモードでは127台までのスレーブサーバを使用できます。 - また、スレーブサーバをまったく使用しないことも可能です。 + このモードでは127台までのレプリカサーバを使用できます。 + また、レプリカサーバをまったく使用しないことも可能です。 @@ -1300,9 +1300,20 @@ S2/N2: COMMIT; シリアル型やシーケンスに関する一貫した可視性を保証しません。 - + + + rawモード + + このモードでは、Pgpool-IIはデータベースの同期に関しては関与しません。 + システム全体に意味の有る動作をさせるのはユーザの責任となります。 + このモードでは負荷分散はできません。 + このモードを有効にするにはbackend_clustering_modeに'raw'を設定してください。 + +backend_clustering_mode = 'raw' + + diff --git a/doc.ja/src/sgml/loadbalance.sgml b/doc.ja/src/sgml/loadbalance.sgml index fa6c4a2cf..cda0b25ed 100644 --- a/doc.ja/src/sgml/loadbalance.sgml +++ b/doc.ja/src/sgml/loadbalance.sgml @@ -75,7 +75,7 @@ - ローモードでない + rawモードでない diff --git a/doc.ja/src/sgml/ssl.sgml b/doc.ja/src/sgml/ssl.sgml index 053af4273..c7511ad87 100644 --- a/doc.ja/src/sgml/ssl.sgml +++ b/doc.ja/src/sgml/ssl.sgml @@ -208,7 +208,7 @@ - SSSLサーバ証明書失効リスト(CRL)が入っているファイルのパスを設定します。 + SSLサーバ証明書失効リスト(CRL)が入っているファイルのパスを設定します。 相対パスで指定した場合、Pgpool-IIの設定ファイルディレクトリが基準となります。 デフォルトは空で、この場合CRLファイルは読み込まれません。 diff --git a/doc/src/sgml/connection-settings.sgml b/doc/src/sgml/connection-settings.sgml index 606c87618..a219b825e 100644 --- a/doc/src/sgml/connection-settings.sgml +++ b/doc/src/sgml/connection-settings.sgml @@ -450,13 +450,13 @@ backend_clustering_mode = 'logical_replication' This mode is used to couple Pgpool-II with Slony-I. Slony-I is responsible for doing - the actual data replication. To enable this mode, use 'slony' for + the actual data replication. To enable this mode, use 'slony' for backend_clustering_mode. backend_clustering_mode = 'slony' - In this mode you can have up to 127 standby servers. Also it is - possible not to have standby server at all. + In this mode you can have up to 127 replica servers. Also it is + possible not to have replica server at all. @@ -877,7 +877,7 @@ backend_clustering_mode = 'native_replication' - Snapshot Isolation Mode + Snapshot isolation mode This mode is similar to the native replication mode except it adds @@ -951,7 +951,7 @@ S2/N2: COMMIT; REPEATABLE READ. That means you need to set it in postgresql.conf like this: - default_transaction_isolation = 'repeatable read' +default_transaction_isolation = 'repeatable read' @@ -962,9 +962,20 @@ S2/N2: COMMIT; guaranteed. - + + + Raw mode + + In this mode, Pgpool-II does not care about the database synchronization. + It's user's responsibility to make the whole system does a meaningful thing. + Load balancing is not possible in the mode. + To enable this mode, use 'raw' for backend_clustering_mode. + +backend_clustering_mode = 'raw' + + -- 2.39.5