blob: 9f6dc24b910fee3785134a111fda24bec129beed [file] [log] [blame]
Willy Tarreauf09c6602012-02-13 17:12:08 +01001/*
2 * First Available Server load balancing algorithm.
3 *
Willy Tarreau64559c52012-04-07 09:08:45 +02004 * This file implements an algorithm which emerged during a discussion with
5 * Steen Larsen, initially inspired from Anshul Gandhi et.al.'s work now
6 * described as "packing" in section 3.5:
7 *
8 * http://reports-archive.adm.cs.cmu.edu/anon/2012/CMU-CS-12-109.pdf
9 *
Willy Tarreauf09c6602012-02-13 17:12:08 +010010 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 */
18
Willy Tarreau1e56f922020-06-04 23:20:13 +020019#include <import/eb32tree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020020#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/backend.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020022#include <haproxy/queue.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020023#include <haproxy/server-t.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010024
25
26/* Remove a server from a tree. It must have previously been dequeued. This
27 * function is meant to be called when a server is going down or has its
28 * weight disabled.
Willy Tarreau1b877482018-08-21 19:44:53 +020029 *
30 * The server's lock and the lbprm's lock must be held.
Willy Tarreauf09c6602012-02-13 17:12:08 +010031 */
32static inline void fas_remove_from_tree(struct server *s)
33{
34 s->lb_tree = NULL;
35}
36
Willy Tarreau1b877482018-08-21 19:44:53 +020037/* simply removes a server from a tree.
38 *
Willy Tarreau6b96e0e2021-02-17 16:15:23 +010039 * The lbprm's lock must be held.
Willy Tarreau1b877482018-08-21 19:44:53 +020040 */
Willy Tarreauf09c6602012-02-13 17:12:08 +010041static inline void fas_dequeue_srv(struct server *s)
42{
43 eb32_delete(&s->lb_node);
44}
45
46/* Queue a server in its associated tree, assuming the weight is >0.
47 * Servers are sorted by unique ID so that we send all connections to the first
48 * available server in declaration order (or ID order) until its maxconn is
49 * reached. It is important to understand that the server weight is not used
50 * here.
Willy Tarreau1b877482018-08-21 19:44:53 +020051 *
Willy Tarreau6b96e0e2021-02-17 16:15:23 +010052 * The lbprm's lock must be held.
Willy Tarreauf09c6602012-02-13 17:12:08 +010053 */
54static inline void fas_queue_srv(struct server *s)
55{
56 s->lb_node.key = s->puid;
57 eb32_insert(s->lb_tree, &s->lb_node);
58}
59
60/* Re-position the server in the FS tree after it has been assigned one
61 * connection or after it has released one. Note that it is possible that
62 * the server has been moved out of the tree due to failed health-checks.
Willy Tarreau1b877482018-08-21 19:44:53 +020063 *
Willy Tarreau59b0fec2021-02-17 16:01:37 +010064 * <locked> must reflect the server's lock ownership. The lbprm's lock will
65 * be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +010066 */
Willy Tarreau59b0fec2021-02-17 16:01:37 +010067static void fas_srv_reposition(struct server *s, int locked)
Willy Tarreauf09c6602012-02-13 17:12:08 +010068{
Willy Tarreaucd10def2020-10-17 18:48:47 +020069 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &s->proxy->lbprm.lock);
Christopher Faulet16b2be92019-07-04 11:59:42 +020070 if (s->lb_tree) {
71 fas_dequeue_srv(s);
72 fas_queue_srv(s);
73 }
Willy Tarreaucd10def2020-10-17 18:48:47 +020074 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &s->proxy->lbprm.lock);
Willy Tarreauf09c6602012-02-13 17:12:08 +010075}
76
77/* This function updates the server trees according to server <srv>'s new
78 * state. It should be called when server <srv>'s status changes to down.
79 * It is not important whether the server was already down or not. It is not
80 * important either that the new state is completely down (the caller may not
81 * know all the variables of a server's state).
Willy Tarreau1b877482018-08-21 19:44:53 +020082 *
83 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +010084 */
85static void fas_set_server_status_down(struct server *srv)
86{
87 struct proxy *p = srv->proxy;
88
Willy Tarreauc5150da2014-05-13 19:27:31 +020089 if (!srv_lb_status_changed(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +010090 return;
91
Emeric Brun52a91d32017-08-31 14:41:55 +020092 if (srv_willbe_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +010093 goto out_update_state;
94
Willy Tarreaucd10def2020-10-17 18:48:47 +020095 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +020096
Emeric Brun52a91d32017-08-31 14:41:55 +020097 if (!srv_currently_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +010098 /* server was already down */
99 goto out_update_backend;
100
Willy Tarreauc93cd162014-05-13 15:54:22 +0200101 if (srv->flags & SRV_F_BACKUP) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200102 p->lbprm.tot_wbck -= srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100103 p->srv_bck--;
104
105 if (srv == p->lbprm.fbck) {
106 /* we lost the first backup server in a single-backup
107 * configuration, we must search another one.
108 */
109 struct server *srv2 = p->lbprm.fbck;
110 do {
111 srv2 = srv2->next;
112 } while (srv2 &&
Willy Tarreauc93cd162014-05-13 15:54:22 +0200113 !((srv2->flags & SRV_F_BACKUP) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200114 srv_willbe_usable(srv2)));
Willy Tarreauf09c6602012-02-13 17:12:08 +0100115 p->lbprm.fbck = srv2;
116 }
117 } else {
Emeric Brun52a91d32017-08-31 14:41:55 +0200118 p->lbprm.tot_wact -= srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100119 p->srv_act--;
120 }
121
122 fas_dequeue_srv(srv);
123 fas_remove_from_tree(srv);
124
Christopher Faulet5b517552017-06-09 14:17:53 +0200125 out_update_backend:
Willy Tarreauf09c6602012-02-13 17:12:08 +0100126 /* check/update tot_used, tot_weight */
127 update_backend_weight(p);
Willy Tarreaucd10def2020-10-17 18:48:47 +0200128 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200129
Willy Tarreauf09c6602012-02-13 17:12:08 +0100130 out_update_state:
Willy Tarreauc5150da2014-05-13 19:27:31 +0200131 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100132}
133
134/* This function updates the server trees according to server <srv>'s new
135 * state. It should be called when server <srv>'s status changes to up.
136 * It is not important whether the server was already down or not. It is not
137 * important either that the new state is completely UP (the caller may not
138 * know all the variables of a server's state). This function will not change
139 * the weight of a server which was already up.
Willy Tarreau1b877482018-08-21 19:44:53 +0200140 *
141 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +0100142 */
143static void fas_set_server_status_up(struct server *srv)
144{
145 struct proxy *p = srv->proxy;
146
Willy Tarreauc5150da2014-05-13 19:27:31 +0200147 if (!srv_lb_status_changed(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100148 return;
149
Emeric Brun52a91d32017-08-31 14:41:55 +0200150 if (!srv_willbe_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100151 goto out_update_state;
152
Willy Tarreaucd10def2020-10-17 18:48:47 +0200153 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200154
Emeric Brun52a91d32017-08-31 14:41:55 +0200155 if (srv_currently_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100156 /* server was already up */
157 goto out_update_backend;
158
Willy Tarreauc93cd162014-05-13 15:54:22 +0200159 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreauf09c6602012-02-13 17:12:08 +0100160 srv->lb_tree = &p->lbprm.fas.bck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200161 p->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100162 p->srv_bck++;
163
164 if (!(p->options & PR_O_USE_ALL_BK)) {
165 if (!p->lbprm.fbck) {
166 /* there was no backup server anymore */
167 p->lbprm.fbck = srv;
168 } else {
169 /* we may have restored a backup server prior to fbck,
170 * in which case it should replace it.
171 */
172 struct server *srv2 = srv;
173 do {
174 srv2 = srv2->next;
175 } while (srv2 && (srv2 != p->lbprm.fbck));
176 if (srv2)
177 p->lbprm.fbck = srv;
178 }
179 }
180 } else {
181 srv->lb_tree = &p->lbprm.fas.act;
Emeric Brun52a91d32017-08-31 14:41:55 +0200182 p->lbprm.tot_wact += srv->next_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100183 p->srv_act++;
184 }
185
186 /* note that eweight cannot be 0 here */
187 fas_queue_srv(srv);
188
189 out_update_backend:
190 /* check/update tot_used, tot_weight */
191 update_backend_weight(p);
Willy Tarreaucd10def2020-10-17 18:48:47 +0200192 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200193
Willy Tarreauf09c6602012-02-13 17:12:08 +0100194 out_update_state:
Willy Tarreauc5150da2014-05-13 19:27:31 +0200195 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100196}
197
198/* This function must be called after an update to server <srv>'s effective
199 * weight. It may be called after a state change too.
Willy Tarreau1b877482018-08-21 19:44:53 +0200200 *
201 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +0100202 */
203static void fas_update_server_weight(struct server *srv)
204{
205 int old_state, new_state;
206 struct proxy *p = srv->proxy;
207
Willy Tarreauc5150da2014-05-13 19:27:31 +0200208 if (!srv_lb_status_changed(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100209 return;
210
211 /* If changing the server's weight changes its state, we simply apply
212 * the procedures we already have for status change. If the state
213 * remains down, the server is not in any tree, so it's as easy as
214 * updating its values. If the state remains up with different weights,
215 * there are some computations to perform to find a new place and
216 * possibly a new tree for this server.
217 */
218
Emeric Brun52a91d32017-08-31 14:41:55 +0200219 old_state = srv_currently_usable(srv);
220 new_state = srv_willbe_usable(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100221
222 if (!old_state && !new_state) {
Willy Tarreauc5150da2014-05-13 19:27:31 +0200223 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100224 return;
225 }
226 else if (!old_state && new_state) {
227 fas_set_server_status_up(srv);
228 return;
229 }
230 else if (old_state && !new_state) {
231 fas_set_server_status_down(srv);
232 return;
233 }
234
Willy Tarreaucd10def2020-10-17 18:48:47 +0200235 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200236
Willy Tarreauf09c6602012-02-13 17:12:08 +0100237 if (srv->lb_tree)
238 fas_dequeue_srv(srv);
239
Willy Tarreauc93cd162014-05-13 15:54:22 +0200240 if (srv->flags & SRV_F_BACKUP) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200241 p->lbprm.tot_wbck += srv->next_eweight - srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100242 srv->lb_tree = &p->lbprm.fas.bck;
243 } else {
Emeric Brun52a91d32017-08-31 14:41:55 +0200244 p->lbprm.tot_wact += srv->next_eweight - srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100245 srv->lb_tree = &p->lbprm.fas.act;
246 }
247
248 fas_queue_srv(srv);
249
250 update_backend_weight(p);
Willy Tarreaucd10def2020-10-17 18:48:47 +0200251 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200252
Willy Tarreauc5150da2014-05-13 19:27:31 +0200253 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100254}
255
256/* This function is responsible for building the trees in case of fast
257 * weighted least-conns. It also sets p->lbprm.wdiv to the eweight to
258 * uweight ratio. Both active and backup groups are initialized.
259 */
260void fas_init_server_tree(struct proxy *p)
261{
262 struct server *srv;
263 struct eb_root init_head = EB_ROOT;
264
265 p->lbprm.set_server_status_up = fas_set_server_status_up;
266 p->lbprm.set_server_status_down = fas_set_server_status_down;
267 p->lbprm.update_server_eweight = fas_update_server_weight;
268 p->lbprm.server_take_conn = fas_srv_reposition;
269 p->lbprm.server_drop_conn = fas_srv_reposition;
270
271 p->lbprm.wdiv = BE_WEIGHT_SCALE;
272 for (srv = p->srv; srv; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200273 srv->next_eweight = (srv->uweight * p->lbprm.wdiv + p->lbprm.wmult - 1) / p->lbprm.wmult;
Willy Tarreauc5150da2014-05-13 19:27:31 +0200274 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100275 }
276
277 recount_servers(p);
278 update_backend_weight(p);
279
280 p->lbprm.fas.act = init_head;
281 p->lbprm.fas.bck = init_head;
282
283 /* queue active and backup servers in two distinct groups */
284 for (srv = p->srv; srv; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200285 if (!srv_currently_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100286 continue;
Willy Tarreauc93cd162014-05-13 15:54:22 +0200287 srv->lb_tree = (srv->flags & SRV_F_BACKUP) ? &p->lbprm.fas.bck : &p->lbprm.fas.act;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100288 fas_queue_srv(srv);
289 }
290}
291
292/* Return next server from the FS tree in backend <p>. If the tree is empty,
293 * return NULL. Saturated servers are skipped.
Willy Tarreau1b877482018-08-21 19:44:53 +0200294 *
295 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +0100296 */
297struct server *fas_get_next_server(struct proxy *p, struct server *srvtoavoid)
298{
299 struct server *srv, *avoided;
300 struct eb32_node *node;
301
302 srv = avoided = NULL;
303
Willy Tarreauf76a21f2020-10-17 19:45:42 +0200304 HA_RWLOCK_RDLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100305 if (p->srv_act)
306 node = eb32_first(&p->lbprm.fas.act);
Christopher Faulet5b517552017-06-09 14:17:53 +0200307 else if (p->lbprm.fbck) {
308 srv = p->lbprm.fbck;
309 goto out;
310 }
Willy Tarreauf09c6602012-02-13 17:12:08 +0100311 else if (p->srv_bck)
312 node = eb32_first(&p->lbprm.fas.bck);
Christopher Faulet5b517552017-06-09 14:17:53 +0200313 else {
314 srv = NULL;
315 goto out;
316 }
Willy Tarreauf09c6602012-02-13 17:12:08 +0100317
318 while (node) {
319 /* OK, we have a server. However, it may be saturated, in which
320 * case we don't want to reconsider it for now, so we'll simply
321 * skip it. Same if it's the server we try to avoid, in which
322 * case we simply remember it for later use if needed.
323 */
324 struct server *s;
325
326 s = eb32_entry(node, struct server, lb_node);
327 if (!s->maxconn || (!s->nbpend && s->served < srv_dynamic_maxconn(s))) {
328 if (s != srvtoavoid) {
329 srv = s;
330 break;
331 }
332 avoided = s;
333 }
334 node = eb32_next(node);
335 }
336
337 if (!srv)
338 srv = avoided;
Christopher Faulet5b517552017-06-09 14:17:53 +0200339 out:
Willy Tarreauf76a21f2020-10-17 19:45:42 +0200340 HA_RWLOCK_RDUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100341 return srv;
342}
343
344
345/*
346 * Local variables:
347 * c-indent-level: 8
348 * c-basic-offset: 8
349 * End:
350 */