Commit 04d4192c authored by Jim Jagielski's avatar Jim Jagielski
Browse files

Document change in lbmethod= argument


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239684 13f79535-47bb-0310-9956-ffa450edef68
parent 38d90aa3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -879,9 +879,9 @@ through</td></tr>
    <tr><td>lbmethod</td>
        <td>-</td>
        <td>Balancer load-balance method. Select the load-balancing scheduler
        method to use. Either <code>requests</code>, to perform weighted
        request counting or <code>traffic</code>, to perform weighted
        traffic byte count balancing. Default is <code>requests</code>.
        method to use. Either <code>byrequests</code>, to perform weighted
        request counting or <code>bytraffic</code>, to perform weighted
        traffic byte count balancing. Default is <code>byrequests</code>.
    </td></tr>
    <tr><td>stickysession</td>
        <td>-</td>
+4 −4
Original line number Diff line number Diff line
@@ -883,9 +883,9 @@
        <td>-</td>
        <td>Balancer のロードバランス方法。使用するロードバランスの
        スケジューリング方法を選びます。処理したリクエストの数で重み付けする
        <code>requests</code> か、転送量のバイト数で重み付けする
        <code>traffic</code> を設定できます。デフォルトは
        <code>requests</code> です。
        <code>byrequests</code> か、転送量のバイト数で重み付けする
        <code>bytraffic</code> を設定できます。デフォルトは
        <code>byrequests</code> です。
    </td></tr>
    <tr><td>stickysession</td>
        <td>-</td>
+3 −3
Original line number Diff line number Diff line
@@ -695,9 +695,9 @@ expressions</description>
    <tr><td>lbmethod</td>
        <td>-</td>
        <td>Balancer load-balance method. Select the load-balancing scheduler
        method to use. Either <code>requests</code>, to perform weighted
        request counting or <code>traffic</code>, to perform weighted
        traffic byte count balancing. Default is <code>requests</code>.
        method to use. Either <code>byrequests</code>, to perform weighted
        request counting or <code>bytraffic</code>, to perform weighted
        traffic byte count balancing. Default is <code>byrequests</code>.
    </td></tr>
    <tr><td>stickysession</td>
        <td>-</td>
+3 −3
Original line number Diff line number Diff line
@@ -699,9 +699,9 @@
        <td>-</td>
        <td>Balancer $B$N%m!<%I%P%i%s%9J}K!!#;HMQ$9$k%m!<%I%P%i%s%9$N(B
        $B%9%1%8%e!<%j%s%0J}K!$rA*$S$^$9!#=hM}$7$?%j%/%(%9%H$N?t$G=E$_IU$1$9$k(B
        <code>requests</code> $B$+!"E>AwNL$N%P%$%H?t$G=E$_IU$1$9$k(B
        <code>traffic</code> $B$r@_Dj$G$-$^$9!#%G%U%)%k%H$O(B
        <code>requests</code> $B$G$9!#(B
        <code>byrequests</code> $B$+!"E>AwNL$N%P%$%H?t$G=E$_IU$1$9$k(B
        <code>bytraffic</code> $B$r@_Dj$G$-$^$9!#%G%U%)%k%H$O(B
        <code>byrequests</code> $B$G$9!#(B
    </td></tr>
    <tr><td>stickysession</td>
        <td>-</td>
+3 −3
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@
<div class="section">
<h2><a name="requests" id="requests">Request Counting Algorithm</a></h2>
    
    <p>Enabled via <code>lbmethod=requests</code>, the idea behind this
    <p>Enabled via <code>lbmethod=byrequests</code>, the idea behind this
    scheduler is that we distribute the requests among the
    various workers to ensure that each gets their configured share
    of the number of requests. It works as follows:</p>
@@ -244,7 +244,7 @@ candidate lbstatus -= total factor</code></pre></div>
<div class="section">
<h2><a name="traffic" id="traffic">Weighted Traffic Counting Algorithm</a></h2>
    
    <p>Enabled via <code>lbmethod=traffic</code>, the idea behind this
    <p>Enabled via <code>lbmethod=bytraffic</code>, the idea behind this
    scheduler is very similar to the Request Counting method, with
    the following changes:</p>

Loading