Document that max_worker_processes must be high enough in standby.
authorFujii Masao
Thu, 3 Sep 2015 13:30:16 +0000 (22:30 +0900)
committerFujii Masao
Thu, 3 Sep 2015 13:31:14 +0000 (22:31 +0900)
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.

doc/src/sgml/high-availability.sgml
src/backend/access/transam/xlog.c

index d249959f205970c1b287ec5a9bdee59ffa4dfd8c..65281f7f9766894f9aa33f863144edc6fd460419 100644 (file)
@@ -1993,6 +1993,11 @@ LOG:  database system is ready to accept read only connections
          max_locks_per_transaction
         
        
+       
+        
+         max_worker_processes
+        
+       
       
    
 
index 307a04c45ba2e03bd29b6e3ae07f50bc64585a10..d8876f2f0218117e13ca8a267ad98c73ee71d5db 100644 (file)
@@ -6024,6 +6024,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)