blob: 72e9c9c0338dd610fcc85c7be0dbf7bdf378194a [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 Tarreau4c7e4b72020-05-27 12:58:42 +020019#include <haproxy/api.h>
Willy Tarreau8d2b7772020-05-27 10:58:19 +020020#include <import/eb32tree.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010021
22#include <types/global.h>
23#include <types/server.h>
24
25#include <proto/backend.h>
26#include <proto/queue.h>
27
28
29/* Remove a server from a tree. It must have previously been dequeued. This
30 * function is meant to be called when a server is going down or has its
31 * weight disabled.
Willy Tarreau1b877482018-08-21 19:44:53 +020032 *
33 * The server's lock and the lbprm's lock must be held.
Willy Tarreauf09c6602012-02-13 17:12:08 +010034 */
35static inline void fas_remove_from_tree(struct server *s)
36{
37 s->lb_tree = NULL;
38}
39
Willy Tarreau1b877482018-08-21 19:44:53 +020040/* simply removes a server from a tree.
41 *
42 * The server's lock and the lbprm's lock must be held.
43 */
Willy Tarreauf09c6602012-02-13 17:12:08 +010044static inline void fas_dequeue_srv(struct server *s)
45{
46 eb32_delete(&s->lb_node);
47}
48
49/* Queue a server in its associated tree, assuming the weight is >0.
50 * Servers are sorted by unique ID so that we send all connections to the first
51 * available server in declaration order (or ID order) until its maxconn is
52 * reached. It is important to understand that the server weight is not used
53 * here.
Willy Tarreau1b877482018-08-21 19:44:53 +020054 *
55 * The server's lock and the lbprm's lock must be held.
Willy Tarreauf09c6602012-02-13 17:12:08 +010056 */
57static inline void fas_queue_srv(struct server *s)
58{
59 s->lb_node.key = s->puid;
60 eb32_insert(s->lb_tree, &s->lb_node);
61}
62
63/* Re-position the server in the FS tree after it has been assigned one
64 * connection or after it has released one. Note that it is possible that
65 * the server has been moved out of the tree due to failed health-checks.
Willy Tarreau1b877482018-08-21 19:44:53 +020066 *
67 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +010068 */
69static void fas_srv_reposition(struct server *s)
70{
Christopher Faulet2a944ee2017-11-07 10:42:54 +010071 HA_SPIN_LOCK(LBPRM_LOCK, &s->proxy->lbprm.lock);
Christopher Faulet16b2be92019-07-04 11:59:42 +020072 if (s->lb_tree) {
73 fas_dequeue_srv(s);
74 fas_queue_srv(s);
75 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +010076 HA_SPIN_UNLOCK(LBPRM_LOCK, &s->proxy->lbprm.lock);
Willy Tarreauf09c6602012-02-13 17:12:08 +010077}
78
79/* This function updates the server trees according to server <srv>'s new
80 * state. It should be called when server <srv>'s status changes to down.
81 * It is not important whether the server was already down or not. It is not
82 * important either that the new state is completely down (the caller may not
83 * know all the variables of a server's state).
Willy Tarreau1b877482018-08-21 19:44:53 +020084 *
85 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +010086 */
87static void fas_set_server_status_down(struct server *srv)
88{
89 struct proxy *p = srv->proxy;
90
Willy Tarreauc5150da2014-05-13 19:27:31 +020091 if (!srv_lb_status_changed(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +010092 return;
93
Emeric Brun52a91d32017-08-31 14:41:55 +020094 if (srv_willbe_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +010095 goto out_update_state;
96
Willy Tarreau1b877482018-08-21 19:44:53 +020097 HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock);
98
Emeric Brun52a91d32017-08-31 14:41:55 +020099 if (!srv_currently_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100100 /* server was already down */
101 goto out_update_backend;
102
Willy Tarreauc93cd162014-05-13 15:54:22 +0200103 if (srv->flags & SRV_F_BACKUP) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200104 p->lbprm.tot_wbck -= srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100105 p->srv_bck--;
106
107 if (srv == p->lbprm.fbck) {
108 /* we lost the first backup server in a single-backup
109 * configuration, we must search another one.
110 */
111 struct server *srv2 = p->lbprm.fbck;
112 do {
113 srv2 = srv2->next;
114 } while (srv2 &&
Willy Tarreauc93cd162014-05-13 15:54:22 +0200115 !((srv2->flags & SRV_F_BACKUP) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200116 srv_willbe_usable(srv2)));
Willy Tarreauf09c6602012-02-13 17:12:08 +0100117 p->lbprm.fbck = srv2;
118 }
119 } else {
Emeric Brun52a91d32017-08-31 14:41:55 +0200120 p->lbprm.tot_wact -= srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100121 p->srv_act--;
122 }
123
124 fas_dequeue_srv(srv);
125 fas_remove_from_tree(srv);
126
Christopher Faulet5b517552017-06-09 14:17:53 +0200127 out_update_backend:
Willy Tarreauf09c6602012-02-13 17:12:08 +0100128 /* check/update tot_used, tot_weight */
129 update_backend_weight(p);
Willy Tarreau1b877482018-08-21 19:44:53 +0200130 HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock);
131
Willy Tarreauf09c6602012-02-13 17:12:08 +0100132 out_update_state:
Willy Tarreauc5150da2014-05-13 19:27:31 +0200133 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100134}
135
136/* This function updates the server trees according to server <srv>'s new
137 * state. It should be called when server <srv>'s status changes to up.
138 * It is not important whether the server was already down or not. It is not
139 * important either that the new state is completely UP (the caller may not
140 * know all the variables of a server's state). This function will not change
141 * the weight of a server which was already up.
Willy Tarreau1b877482018-08-21 19:44:53 +0200142 *
143 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +0100144 */
145static void fas_set_server_status_up(struct server *srv)
146{
147 struct proxy *p = srv->proxy;
148
Willy Tarreauc5150da2014-05-13 19:27:31 +0200149 if (!srv_lb_status_changed(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100150 return;
151
Emeric Brun52a91d32017-08-31 14:41:55 +0200152 if (!srv_willbe_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100153 goto out_update_state;
154
Willy Tarreau1b877482018-08-21 19:44:53 +0200155 HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock);
156
Emeric Brun52a91d32017-08-31 14:41:55 +0200157 if (srv_currently_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100158 /* server was already up */
159 goto out_update_backend;
160
Willy Tarreauc93cd162014-05-13 15:54:22 +0200161 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreauf09c6602012-02-13 17:12:08 +0100162 srv->lb_tree = &p->lbprm.fas.bck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200163 p->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100164 p->srv_bck++;
165
166 if (!(p->options & PR_O_USE_ALL_BK)) {
167 if (!p->lbprm.fbck) {
168 /* there was no backup server anymore */
169 p->lbprm.fbck = srv;
170 } else {
171 /* we may have restored a backup server prior to fbck,
172 * in which case it should replace it.
173 */
174 struct server *srv2 = srv;
175 do {
176 srv2 = srv2->next;
177 } while (srv2 && (srv2 != p->lbprm.fbck));
178 if (srv2)
179 p->lbprm.fbck = srv;
180 }
181 }
182 } else {
183 srv->lb_tree = &p->lbprm.fas.act;
Emeric Brun52a91d32017-08-31 14:41:55 +0200184 p->lbprm.tot_wact += srv->next_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100185 p->srv_act++;
186 }
187
188 /* note that eweight cannot be 0 here */
189 fas_queue_srv(srv);
190
191 out_update_backend:
192 /* check/update tot_used, tot_weight */
193 update_backend_weight(p);
Willy Tarreau1b877482018-08-21 19:44:53 +0200194 HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock);
195
Willy Tarreauf09c6602012-02-13 17:12:08 +0100196 out_update_state:
Willy Tarreauc5150da2014-05-13 19:27:31 +0200197 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100198}
199
200/* This function must be called after an update to server <srv>'s effective
201 * weight. It may be called after a state change too.
Willy Tarreau1b877482018-08-21 19:44:53 +0200202 *
203 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +0100204 */
205static void fas_update_server_weight(struct server *srv)
206{
207 int old_state, new_state;
208 struct proxy *p = srv->proxy;
209
Willy Tarreauc5150da2014-05-13 19:27:31 +0200210 if (!srv_lb_status_changed(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100211 return;
212
213 /* If changing the server's weight changes its state, we simply apply
214 * the procedures we already have for status change. If the state
215 * remains down, the server is not in any tree, so it's as easy as
216 * updating its values. If the state remains up with different weights,
217 * there are some computations to perform to find a new place and
218 * possibly a new tree for this server.
219 */
220
Emeric Brun52a91d32017-08-31 14:41:55 +0200221 old_state = srv_currently_usable(srv);
222 new_state = srv_willbe_usable(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100223
224 if (!old_state && !new_state) {
Willy Tarreauc5150da2014-05-13 19:27:31 +0200225 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100226 return;
227 }
228 else if (!old_state && new_state) {
229 fas_set_server_status_up(srv);
230 return;
231 }
232 else if (old_state && !new_state) {
233 fas_set_server_status_down(srv);
234 return;
235 }
236
Willy Tarreau1b877482018-08-21 19:44:53 +0200237 HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock);
238
Willy Tarreauf09c6602012-02-13 17:12:08 +0100239 if (srv->lb_tree)
240 fas_dequeue_srv(srv);
241
Willy Tarreauc93cd162014-05-13 15:54:22 +0200242 if (srv->flags & SRV_F_BACKUP) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200243 p->lbprm.tot_wbck += srv->next_eweight - srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100244 srv->lb_tree = &p->lbprm.fas.bck;
245 } else {
Emeric Brun52a91d32017-08-31 14:41:55 +0200246 p->lbprm.tot_wact += srv->next_eweight - srv->cur_eweight;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100247 srv->lb_tree = &p->lbprm.fas.act;
248 }
249
250 fas_queue_srv(srv);
251
252 update_backend_weight(p);
Willy Tarreau1b877482018-08-21 19:44:53 +0200253 HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock);
254
Willy Tarreauc5150da2014-05-13 19:27:31 +0200255 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100256}
257
258/* This function is responsible for building the trees in case of fast
259 * weighted least-conns. It also sets p->lbprm.wdiv to the eweight to
260 * uweight ratio. Both active and backup groups are initialized.
261 */
262void fas_init_server_tree(struct proxy *p)
263{
264 struct server *srv;
265 struct eb_root init_head = EB_ROOT;
266
267 p->lbprm.set_server_status_up = fas_set_server_status_up;
268 p->lbprm.set_server_status_down = fas_set_server_status_down;
269 p->lbprm.update_server_eweight = fas_update_server_weight;
270 p->lbprm.server_take_conn = fas_srv_reposition;
271 p->lbprm.server_drop_conn = fas_srv_reposition;
272
273 p->lbprm.wdiv = BE_WEIGHT_SCALE;
274 for (srv = p->srv; srv; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200275 srv->next_eweight = (srv->uweight * p->lbprm.wdiv + p->lbprm.wmult - 1) / p->lbprm.wmult;
Willy Tarreauc5150da2014-05-13 19:27:31 +0200276 srv_lb_commit_status(srv);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100277 }
278
279 recount_servers(p);
280 update_backend_weight(p);
281
282 p->lbprm.fas.act = init_head;
283 p->lbprm.fas.bck = init_head;
284
285 /* queue active and backup servers in two distinct groups */
286 for (srv = p->srv; srv; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200287 if (!srv_currently_usable(srv))
Willy Tarreauf09c6602012-02-13 17:12:08 +0100288 continue;
Willy Tarreauc93cd162014-05-13 15:54:22 +0200289 srv->lb_tree = (srv->flags & SRV_F_BACKUP) ? &p->lbprm.fas.bck : &p->lbprm.fas.act;
Willy Tarreauf09c6602012-02-13 17:12:08 +0100290 fas_queue_srv(srv);
291 }
292}
293
294/* Return next server from the FS tree in backend <p>. If the tree is empty,
295 * return NULL. Saturated servers are skipped.
Willy Tarreau1b877482018-08-21 19:44:53 +0200296 *
297 * The server's lock must be held. The lbprm's lock will be used.
Willy Tarreauf09c6602012-02-13 17:12:08 +0100298 */
299struct server *fas_get_next_server(struct proxy *p, struct server *srvtoavoid)
300{
301 struct server *srv, *avoided;
302 struct eb32_node *node;
303
304 srv = avoided = NULL;
305
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100306 HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100307 if (p->srv_act)
308 node = eb32_first(&p->lbprm.fas.act);
Christopher Faulet5b517552017-06-09 14:17:53 +0200309 else if (p->lbprm.fbck) {
310 srv = p->lbprm.fbck;
311 goto out;
312 }
Willy Tarreauf09c6602012-02-13 17:12:08 +0100313 else if (p->srv_bck)
314 node = eb32_first(&p->lbprm.fas.bck);
Christopher Faulet5b517552017-06-09 14:17:53 +0200315 else {
316 srv = NULL;
317 goto out;
318 }
Willy Tarreauf09c6602012-02-13 17:12:08 +0100319
320 while (node) {
321 /* OK, we have a server. However, it may be saturated, in which
322 * case we don't want to reconsider it for now, so we'll simply
323 * skip it. Same if it's the server we try to avoid, in which
324 * case we simply remember it for later use if needed.
325 */
326 struct server *s;
327
328 s = eb32_entry(node, struct server, lb_node);
329 if (!s->maxconn || (!s->nbpend && s->served < srv_dynamic_maxconn(s))) {
330 if (s != srvtoavoid) {
331 srv = s;
332 break;
333 }
334 avoided = s;
335 }
336 node = eb32_next(node);
337 }
338
339 if (!srv)
340 srv = avoided;
Christopher Faulet5b517552017-06-09 14:17:53 +0200341 out:
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100342 HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreauf09c6602012-02-13 17:12:08 +0100343 return srv;
344}
345
346
347/*
348 * Local variables:
349 * c-indent-level: 8
350 * c-basic-offset: 8
351 * End:
352 */