summaryrefslogtreecommitdiff
path: root/doc/en/pgconfig.html
diff options
context:
space:
mode:
authorUser yamaguti2008-02-08 07:37:45 +0000
committerUser yamaguti2008-02-08 07:37:45 +0000
commit87a9569009ae3df7d8020ccda20372994d482339 (patch)
tree8f31c2899b6591f890bd19cb1775241181279378 /doc/en/pgconfig.html
parent7bf6a6a972605fb1545149aa0e51b19f96de01e4 (diff)
Added "recovery_timeout" parameter in pgpool.conf edit function.
Added Online Recovery manual to docs and helps.
Diffstat (limited to 'doc/en/pgconfig.html')
-rw-r--r--doc/en/pgconfig.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/en/pgconfig.html b/doc/en/pgconfig.html
index 28965b2..4b6110d 100644
--- a/doc/en/pgconfig.html
+++ b/doc/en/pgconfig.html
@@ -49,6 +49,7 @@
<li><a href="#logging">Logging</a></li>
<li><a href="#replication">Replication</a></li>
<li><a href="#health-check">Health Check</a></li>
+ <li><a href="#online-recovery">Online Recovery</a></li>
<li><a href="#system-database">System Database</a></li>
<li><a href="#others">Others</a></li>
</ul>
@@ -331,6 +332,47 @@ Number of connection pools each pgpool server process are keeping. pgpool will m
</tr>
</tfoot>
</table>
+ <h3><a name="online-recovery">Online Recovery</a></h3>
+ <table>
+ <thead>
+ <tr>
+ <th>Parameter</th>
+ <th>Detail</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <th><label>PostgreSQL user name for online recovery</label>
+ <br>recovery_user (string)</th>
+ <td>A PostgreSQL user name to be used during online recovery process.</td>
+ </tr>
+ <tr>
+ <th><label>PostgreSQL user password for online recovery</label>
+ <br>recovery_password (string)</th>
+ <td>"recovery_user"'s password to be used during online recovery process.</td>
+ </tr>
+ <tr>
+ <th><label>Recovery command to be excuted on the first stage</label>
+ <br>recovery_1st_stage_command (string)</th>
+ <td>Specifies a script name to be executed for the first stage of an online recovery process. The script needs to be placed in master node's database cluster ($PGDATA)</td>
+ </tr>
+ <tr>
+ <th><label>Recovery command to be excuted on the second stage</label>
+ <br>recovery_2nd_stage_command (string)</th>
+ <td>Specifies a script name to be executed for the second stage of an online recovery process. The script needs to be placed in master node's database cluster ($PGDATA</td>
+ </tr>
+ <tr>
+ <th><label>Number of seconds to wait for online recovery to complete. 0 means no wait</label>
+ <br>recovery_timeout (integer)</th>
+ <td>Number of seconds to wait for online recovery to complete. Note that 0 means NO WAIT; not no timeout.</td>
+ </tr>
+ </tbody>
+ <tfoot>
+ <tr>
+ <td colspan="2"></td>
+ </tr>
+ </tfoot>
+ </table>
<h3><a name="system-database">System Database</a></h3>
<table>