Author: rjung Date: Tue Mar 10 00:49:12 2009 New Revision: 751924 URL: http://svn.apache.org/viewvc?rev=751924&view=rev Log: Add error_escalation_time to the docs.
Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml tomcat/connectors/trunk/jk/xdocs/reference/status.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=751924&r1=751923&r2=751924&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Tue Mar 10 00:49:12 2009 @@ -43,6 +43,10 @@ <br /> <subsection name="Native"> <changelog> + <update> + LB: Add new property error_escalation_time to fine tune + escalation of local errors to global errors. (rjung) + </update> <fix> LB: Set global worker state to error when we reach max_reply_timeouts, or fail_on_status triggered hard error. (rjung) Modified: tomcat/connectors/trunk/jk/xdocs/reference/status.xml URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/reference/status.xml?rev=751924&r1=751923&r2=751924&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/xdocs/reference/status.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/reference/status.xml Tue Mar 10 00:49:12 2009 @@ -475,6 +475,9 @@ <b>vlt</b>: recover_time (seconds) </li> <li> +<b>vlee</b>: error_escalation_time (seconds) +</li> +<li> <b>vlx</b>: max_reply_timeouts (number) </li> <li> Modified: tomcat/connectors/trunk/jk/xdocs/reference/workers.xml URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/reference/workers.xml?rev=751924&r1=751923&r2=751924&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/xdocs/reference/workers.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/reference/workers.xml Tue Mar 10 00:49:12 2009 @@ -920,6 +920,27 @@ </p> </directive> +<directive name="error_escalation_time" workers="LB" default="recover_time / 2" required="false"> +Setting a member of a load balancer into an error state is quite serious. E.g. +it means that if you need stickyness, all access to the sessions of the +respective node is blocked. +<p> +Some types of error detection do not provide a precise information, whether +a node is completely broken or not. In those cases an LB will not immediately +put the node into the error state. Only when there have been no successful +responses for <b>error_escalation_time</b> seconds after such an error, +will the node be put into error state. +</p> +<p> +Do not set <b>error_escalation_time</b> to a very short time unless you understand +the implications. Use <b>socket_connect_timeout</b> and activate CPing/CPong +with <b>ping_mode</b> and <b>ping_timeout</b> if you want fast error detection. +</p> +<p> +This features has been added in <b>jk 1.2.28</b>. +</p> +</directive> + <directive name="activation" workers="SUB" default="Active" required="false"> Using this directive, a balanced worker of a load balancer can be configured as disabled or stopped. A disabled worker only gets --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org