Document that max_worker_processes must be high enough in standby.

The setting values of some parameters including max_worker_processes
must be equal to or higher than the values on the master. However,
previously max_worker_processes was not listed as such parameter
in the document. So this commit adds it to that list.

Back-patch to 9.4 where max_worker_processes was added.
This commit is contained in:
Fujii Masao 2015-09-03 22:30:16 +09:00
parent 8d60549d6d
commit cb9cc382b4
2 changed files with 9 additions and 0 deletions

View File

@ -2035,6 +2035,11 @@ LOG: database system is ready to accept read only connections
<varname>max_locks_per_transaction</>
</para>
</listitem>
<listitem>
<para>
<varname>max_worker_processes</>
</para>
</listitem>
</itemizedlist>
</para>

View File

@ -5842,6 +5842,10 @@ do { \
/*
* Check to see if required parameters are set high enough on this server
* for various aspects of recovery operation.
*
* Note that all the parameters which this function tests need to be
* listed in Administrator's Overview section in high-availability.sgml.
* If you change them, don't forget to update the list.
*/
static void
CheckRequiredParameterValues(void)