Skip to content

Commit 2abfa46

Browse files
author
HAProxy Community
committed
Update docs for dev
1 parent 1e25301 commit 2abfa46

3 files changed

Lines changed: 24 additions & 18 deletions

File tree

docs/dev/configuration.html

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.4-dev9 - Configuration Manual</title>
5+
<title>HAProxy version 3.4-dev9-3 - Configuration Manual</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -4898,7 +4898,7 @@
48984898
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
48994899
</p>
49004900
<p class="text-right">
4901-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/15</b></small>
4901+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/16</b></small>
49024902
</p>
49034903
</div>
49044904
<!-- /.sidebar -->
@@ -4909,7 +4909,7 @@
49094909
<div class="text-center">
49104910
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
49114911
<h2>Configuration Manual</h2>
4912-
<p><strong>version 3.4-dev9</strong></p>
4912+
<p><strong>version 3.4-dev9-3</strong></p>
49134913
<p>
49144914
2026/04/15<br>
49154915

@@ -7835,7 +7835,7 @@ <h2 id="chapter-2.10" data-target="2.10"><small><a class="small" href="#2.10">2.
78357835
- <a href="#lua-load">lua-load</a>
78367836
- <a href="#lua-load-per-thread">lua-load-per-thread</a>
78377837
- <a href="#lua-prepend-path">lua-prepend-path</a>
7838-
- max-thread-per-group
7838+
- <a href="#max-threads-per-group">max-threads-per-group</a>
78397839
- <a href="#mworker-max-reloads">mworker-max-reloads</a>
78407840
- <a href="#nbthread">nbthread</a>
78417841
- <a href="#node">node</a>
@@ -8953,11 +8953,17 @@ <h2 id="chapter-3.1" data-target="3.1"><small><a class="small" href="#3.1">3.1.<
89538953
it is only meant for debugging and could put the master process in an
89548954
abnormal state.
89558955
</pre><a class="anchor" name="max-threads-per-group"></a><a class="anchor" name="3-max-threads-per-group"></a><a class="anchor" name="3.1-max-threads-per-group"></a><a class="anchor" name="max-threads-per-group (Global section)"></a><a class="anchor" name="max-threads-per-group (Process management and security)"></a><div class="keyword"><b><a class="anchor" name="max-threads-per-group"></a><a href="#3.1-max-threads-per-group">max-threads-per-group</a></b> <span style="color: #080">&lt;number&gt;</span></div><pre class="text">Defines the maximum number of threads in a thread group. Unless the number
8956-
of thread groups is fixed with the thread-groups directive, haproxy will
8957-
create more thread groups if needed. The default and maximum value is 64.
8958-
Having a lower value means more groups will potentially be created, which
8959-
can help improve performances, as a number of data structures are per
8960-
thread group, and that will mean less contention
8956+
of thread groups is fixed with the &quot;<a href="#thread-groups">thread-groups</a>&quot; directive, haproxy will
8957+
create as many thread groups as needed to satisfy the requested number of
8958+
threads. Tha minimum value is 1, and the maximum value is 64 (on 64-bit
8959+
systems, or 32 on 32-bit systems). Lower values reduce contention caused by
8960+
atomic operations on shared states, but can increase the number of sockets
8961+
needed to create all listeners and to hold idle backend connections. Higher
8962+
values will reduce these costs, at the expense of higher CPU usage under
8963+
contented situations, and lower connection rates. The default value is 16,
8964+
which provides the best tradeoff that was experimentally found on various
8965+
tested systems, including x86_64 processors from multiple vendors, and large
8966+
Arm64 systems, both on bare metal and hypervisors.
89618967
</pre><a class="anchor" name="mworker-max-reloads"></a><a class="anchor" name="3-mworker-max-reloads"></a><a class="anchor" name="3.1-mworker-max-reloads"></a><a class="anchor" name="mworker-max-reloads (Global section)"></a><a class="anchor" name="mworker-max-reloads (Process management and security)"></a><div class="keyword"><b><a class="anchor" name="mworker-max-reloads"></a><a href="#3.1-mworker-max-reloads">mworker-max-reloads</a></b> <span style="color: #080">&lt;number&gt;</span></div><pre class="text">In master-worker mode, this option limits the number of time a worker can
89628968
survive to a reload. If the worker did not leave after a reload, once its
89638969
number of reloads is greater than this number, the worker will receive a
@@ -35347,7 +35353,7 @@ <h2 id="chapter-12.9" data-target="12.9"><small><a class="small" href="#12.9">12
3534735353
<br>
3534835354
<hr>
3534935355
<div class="text-right">
35350-
HAProxy 3.4-dev9 &ndash; Configuration Manual<br>
35356+
HAProxy 3.4-dev9-3 &ndash; Configuration Manual<br>
3535135357
<small>, 2026/04/15</small>
3535235358
</div>
3535335359
</div>

docs/dev/intro.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.4-dev9 - Starter Guide</title>
5+
<title>HAProxy version 3.4-dev9-3 - Starter Guide</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -484,7 +484,7 @@
484484
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
485485
</p>
486486
<p class="text-right">
487-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/15</b></small>
487+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/16</b></small>
488488
</p>
489489
</div>
490490
<!-- /.sidebar -->
@@ -495,7 +495,7 @@
495495
<div class="text-center">
496496
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
497497
<h2>Starter Guide</h2>
498-
<p><strong>version 3.4-dev9</strong></p>
498+
<p><strong>version 3.4-dev9-3</strong></p>
499499
<p>
500500
<br>
501501

@@ -2515,7 +2515,7 @@ <h2 id="chapter-4.4" data-target="4.4"><small><a class="small" href="#4.4">4.4.<
25152515
<br>
25162516
<hr>
25172517
<div class="text-right">
2518-
HAProxy 3.4-dev9 &ndash; Starter Guide<br>
2518+
HAProxy 3.4-dev9-3 &ndash; Starter Guide<br>
25192519
<small>, </small>
25202520
</div>
25212521
</div>

docs/dev/management.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.4-dev9 - Management Guide</title>
5+
<title>HAProxy version 3.4-dev9-3 - Management Guide</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -696,7 +696,7 @@
696696
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
697697
</p>
698698
<p class="text-right">
699-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/15</b></small>
699+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/16</b></small>
700700
</p>
701701
</div>
702702
<!-- /.sidebar -->
@@ -707,7 +707,7 @@
707707
<div class="text-center">
708708
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
709709
<h2>Management Guide</h2>
710-
<p><strong>version 3.4-dev9</strong></p>
710+
<p><strong>version 3.4-dev9-3</strong></p>
711711
<p>
712712
<br>
713713

@@ -5849,7 +5849,7 @@ <h2 id="chapter-13.1" data-target="13.1"><small><a class="small" href="#13.1">13
58495849
<br>
58505850
<hr>
58515851
<div class="text-right">
5852-
HAProxy 3.4-dev9 &ndash; Management Guide<br>
5852+
HAProxy 3.4-dev9-3 &ndash; Management Guide<br>
58535853
<small>, </small>
58545854
</div>
58555855
</div>

0 commit comments

Comments
 (0)