commit | 84fe1f479b88778a10416572db13fe26e88f271b | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Apr 20 15:40:38 2023 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Apr 21 17:41:26 2023 +0200 |
tree | af0acb720d2f8e7591c312685856306a363a2f6b | |
parent | 6a4d48b73633afc4b480b8989a5b2613033ed80d [diff] |
MINOR: listener: support another thread dispatch mode: "fair" This new algorithm for rebalancing incoming connections to multiple threads is simpler and instead of considering the threads load, it will only cycle through all of them, offering a fair share of the traffic to each thread. It may be well suited for short-lived connections but is also convenient for very large thread counts where it's not always certain that the least loaded thread will always be found.