Author: rjung
Date: Fri Oct 3 12:41:08 2008
New Revision: 701508
URL: http://svn.apache.org/viewvc?rev=701508&view=rev
Log:
Document retry_wait and add to changelog.
Modified:
tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml
tomcat/connectors/trunk/jk/xdocs/reference/workers.xml
Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml?rev=701508&r1=701507&r2=701508&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml (original)
+++ tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Fri Oct 3
12:41:08 2008
@@ -43,6 +43,9 @@
<br />
<subsection name="Native">
<changelog>
+ <add>
+ AJP13: Add a configurable retry wait time. (rjung)
+ </add>
<update>
Documentation: Enhance description of connection_pool_size. (rjung)
</update>
Modified: tomcat/connectors/trunk/jk/xdocs/reference/workers.xml
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/reference/workers.xml?rev=701508&r1=701507&r2=701508&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/xdocs/reference/workers.xml (original)
+++ tomcat/connectors/trunk/jk/xdocs/reference/workers.xml Fri Oct 3 12:41:08
2008
@@ -725,17 +725,24 @@
The maximum number of times that the worker will send a request to Tomcat
in case of a communication error. Each retry will be done over another
connection. The first time already gets counted, so retries=2 means
-one retry after error. If the value is greater than the default value, on
-each additional retry an extra wait of 100ms will be inserted.
+one retry after error. Before a retry, the worker waits for a configurable
+sleeping time.
<p>
See also the attribute <b>recovery_options</b> for a more fine-grained control
-of retries.
+of retries and <b>retry_wait</b> for the sleep time configuration.
</p>
<p>
Until version <b>1.2.16</b> the default value was 3.
</p>
</directive>
+<directive name="retry_wait" workers="AJP,SUB" default="100" required="false">
+The amount of time in milliseconds the worker sleeps before doing any retry.
+<p>
+This features has been added in <b>jk 1.2.27</b>.
+</p>
+</directive>
+
<directive name="recovery_options" workers="AJP,SUB" default="0"
required="false">
Recovery options influence, how we should handle retries,
in case we detect a problem with Tomcat.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]