varnish-cache/vmod/vmod_directors_shard_cfg.c
0
/*-
1
 * Copyright 2009-2016 UPLEX - Nils Goroll Systemoptimierung
2
 * All rights reserved.
3
 *
4
 * Authors: Nils Goroll <nils.goroll@uplex.de>
5
 *          Geoffrey Simmons <geoff@uplex.de>
6
 *
7
 * SPDX-License-Identifier: BSD-2-Clause
8
 *
9
 * Redistribution and use in source and binary forms, with or without
10
 * modification, are permitted provided that the following conditions
11
 * are met:
12
 * 1. Redistributions of source code must retain the above copyright
13
 *    notice, this list of conditions and the following disclaimer.
14
 * 2. Redistributions in binary form must reproduce the above copyright
15
 *    notice, this list of conditions and the following disclaimer in the
16
 *    documentation and/or other materials provided with the distribution.
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21
 * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
22
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28
 * SUCH DAMAGE.
29
 */
30
31
#include "config.h"
32
33
#include <limits.h>
34
#include <stdlib.h>
35
#include <stdio.h>
36
#include <string.h>
37
38
#include "cache/cache.h"
39
40
#include "vmod_directors_shard_dir.h"
41
#include "vmod_directors_shard_cfg.h"
42
43
/*lint -esym(749,  shard_change_task_e::*) */
44
enum shard_change_task_e {
45
        _SHARD_TASK_E_INVALID = 0,
46
        CLEAR,
47
        ADD_BE,
48
        REMOVE_BE,
49
        _SHARD_TASK_E_MAX
50
};
51
52
struct shard_change_task {
53
        unsigned                                magic;
54
#define SHARD_CHANGE_TASK_MAGIC                 0x1e1168af
55
        enum shard_change_task_e                task;
56
        void                                    *priv;
57
        VCL_REAL                                weight;
58
        VSTAILQ_ENTRY(shard_change_task)        list;
59
};
60
61
struct shard_change {
62
        unsigned                                magic;
63
#define SHARD_CHANGE_MAGIC                      0xdff5c9a6
64
        struct vsl_log                          *vsl;
65
        struct sharddir                         *shardd;
66
        VSTAILQ_HEAD(,shard_change_task)        tasks;
67
};
68
69
struct backend_reconfig {
70
        struct sharddir * const shardd;
71
        unsigned                hint;   // on number of backends after reconfig
72
        unsigned                hole_n; // number of holes in backends array
73
        unsigned                hole_i; // index hint on first hole
74
};
75
76
/* forward decl */
77
static VCL_BOOL
78
change_reconfigure(VRT_CTX, struct shard_change *change, VCL_INT replicas);
79
80
/*
81
 * ============================================================
82
 * change / task list
83
 *
84
 * for backend reconfiguration, we create a change list on the VCL workspace in
85
 * a PRIV_TASK state, which we work in reconfigure.
86
 */
87
88
static void v_matchproto_(vmod_priv_fini_f)
89 475
shard_change_fini(VRT_CTX, void * priv)
90
{
91
        struct shard_change *change;
92
93 475
        if (priv == NULL)
94 0
                return;
95
96 475
        CAST_OBJ_NOTNULL(change, priv, SHARD_CHANGE_MAGIC);
97
98 475
        (void) change_reconfigure(ctx, change, 67);
99 475
}
100
101
static const struct vmod_priv_methods shard_change_priv_methods[1] = {{
102
        .magic = VMOD_PRIV_METHODS_MAGIC,
103
        .type = "vmod_directors_shard_cfg",
104
        .fini = shard_change_fini
105
}};
106
107
static struct shard_change *
108 4925
shard_change_get(VRT_CTX, struct sharddir * const shardd)
109
{
110
        struct vmod_priv *task;
111
        struct shard_change *change;
112 4925
        const void *id = (const char *)shardd + task_off_cfg;
113
114 4925
        CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
115
116 4925
        task = VRT_priv_task(ctx, id);
117 4925
        if (task == NULL) {
118 0
                shard_fail(ctx, shardd->name, "%s", "no priv_task");
119 0
                return (NULL);
120
        }
121
122 4925
        if (task->priv != NULL) {
123 4450
                CAST_OBJ_NOTNULL(change, task->priv, SHARD_CHANGE_MAGIC);
124 4450
                assert (change->vsl == ctx->vsl);
125 4450
                assert (change->shardd == shardd);
126 4450
                return (change);
127
        }
128
129 950
        WS_TASK_ALLOC_OBJ(ctx, change, SHARD_CHANGE_MAGIC);
130 475
        if (change == NULL)
131 0
                return (NULL);
132 475
        change->vsl = ctx->vsl;
133 475
        change->shardd = shardd;
134 475
        VSTAILQ_INIT(&change->tasks);
135 475
        task->priv = change;
136 475
        task->methods = shard_change_priv_methods;
137
138 475
        return (change);
139 4925
}
140
141
static void
142 1000
shard_change_finish(struct shard_change *change)
143
{
144 1000
        CHECK_OBJ_NOTNULL(change, SHARD_CHANGE_MAGIC);
145
146 1000
        VSTAILQ_INIT(&change->tasks);
147 1000
}
148
149
static struct shard_change_task *
150 3925
shard_change_task_add(VRT_CTX, struct shard_change *change,
151
    enum shard_change_task_e task_e, void *priv)
152
{
153
        struct shard_change_task *task;
154
155 3925
        CHECK_OBJ_NOTNULL(change, SHARD_CHANGE_MAGIC);
156
157 7850
        WS_TASK_ALLOC_OBJ(ctx, task, SHARD_CHANGE_TASK_MAGIC);
158 3925
        if (task == NULL)
159 0
                return (NULL);
160 3925
        task->task = task_e;
161 3925
        task->priv = priv;
162 3925
        VSTAILQ_INSERT_TAIL(&change->tasks, task, list);
163
164 3925
        return (task);
165 3925
}
166
167
static inline struct shard_change_task *
168 3550
shard_change_task_backend(VRT_CTX, struct sharddir *shardd,
169
    enum shard_change_task_e task_e, VCL_BACKEND be, VCL_STRING ident,
170
    VCL_DURATION rampup)
171
{
172
        struct shard_change *change;
173
        struct shard_backend *b;
174
175 3550
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
176 3550
        assert(task_e == ADD_BE || task_e == REMOVE_BE);
177
178 3550
        change = shard_change_get(ctx, shardd);
179 3550
        if (change == NULL)
180 0
                return (NULL);
181
182 3550
        b = WS_Alloc(ctx->ws, sizeof(*b));
183 3550
        if (b == NULL) {
184 0
                shard_fail(ctx, change->shardd->name, "%s",
185
                    "could not get workspace for task");
186 0
                return (NULL);
187
        }
188
189 3550
        b->backend = NULL;
190 3550
        VRT_Assign_Backend(&b->backend, be);
191 3550
        b->ident = ident != NULL && *ident != '\0' ? ident : NULL;
192 3550
        b->rampup = rampup;
193
194 3550
        return (shard_change_task_add(ctx, change, task_e, b));
195 3550
}
196
197
/*
198
 * ============================================================
199
 * director reconfiguration tasks
200
 */
201
VCL_BOOL
202 2825
shardcfg_add_backend(VRT_CTX, struct sharddir *shardd,
203
    VCL_BACKEND be, VCL_STRING ident, VCL_DURATION rampup, VCL_REAL weight)
204
{
205
        struct shard_change_task *task;
206
207 2825
        assert (weight >= 1);
208 2825
        AN(be);
209
210 5650
        task = shard_change_task_backend(ctx, shardd, ADD_BE,
211 2825
            be, ident, rampup);
212
213 2825
        if (task == NULL)
214 0
                return (0);
215
216 2825
        task->weight = weight;
217 2825
        return (1);
218 2825
}
219
220
VCL_BOOL
221 725
shardcfg_remove_backend(VRT_CTX, struct sharddir *shardd,
222
    VCL_BACKEND be, VCL_STRING ident)
223
{
224 2175
        return (shard_change_task_backend(ctx, shardd, REMOVE_BE,
225 1450
            be, ident, 0) != NULL);
226
}
227
228
VCL_BOOL
229 375
shardcfg_clear(VRT_CTX, struct sharddir *shardd)
230
{
231
        struct shard_change *change;
232
233 375
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
234
235 375
        change = shard_change_get(ctx, shardd);
236 375
        if (change == NULL)
237 0
                return (0);
238
239 375
        return (shard_change_task_add(ctx, change, CLEAR, NULL) != NULL);
240 375
}
241
242
/*
243
 * ============================================================
244
 * consistent hashing cirle init
245
 */
246
247
typedef int (*compar)( const void*, const void* );
248
249
static int
250 260575
circlepoint_compare(const struct shard_circlepoint *a,
251
    const struct shard_circlepoint *b)
252
{
253 260575
        return ((a->point == b->point) ? 0 : ((a->point > b->point) ? 1 : -1));
254
}
255
256
static void
257 900
shardcfg_hashcircle(struct sharddir *shardd)
258
{
259
        const struct shard_backend *backends, *b;
260
        unsigned h;
261
        uint32_t i, j, n_points, r, rmax;
262
        const char *ident;
263 900
        const int len = 12; // log10(UINT32_MAX) + 2;
264 900
        char s[len];
265
266 900
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
267 900
        AZ(shardd->hashcircle);
268
269 900
        assert(shardd->n_backend > 0);
270 900
        backends=shardd->backend;
271 900
        AN(backends);
272
273 900
        n_points = 0;
274 900
        rmax = (UINT32_MAX - 1) / shardd->n_backend;
275 4675
        for (b = backends; b < backends + shardd->n_backend; b++) {
276 3775
                CHECK_OBJ_NOTNULL(b->backend, DIRECTOR_MAGIC);
277 3775
                n_points += vmin_t(uint32_t, b->replicas, rmax);
278 3775
        }
279
280 900
        assert(n_points < UINT32_MAX);
281
282 900
        shardd->n_points = n_points;
283 900
        shardd->hashcircle = calloc(n_points, sizeof(struct shard_circlepoint));
284 900
        AN(shardd->hashcircle);
285
286 900
        i = 0;
287 4675
        for (h = 0, b = backends; h < shardd->n_backend; h++, b++) {
288 3775
                ident = b->ident ? b->ident : VRT_BACKEND_string(b->backend);
289
290 3775
                AN(ident);
291 3775
                assert(ident[0] != '\0');
292
293 3775
                r = vmin_t(uint32_t, b->replicas, rmax);
294
295 45875
                for (j = 0; j < r; j++) {
296 42100
                        assert(snprintf(s, len, "%d", j) < len);
297 42100
                        assert (i < n_points);
298 42100
                        shardd->hashcircle[i].point =
299 42100
                            VRT_HashStrands32(TOSTRANDS(2, ident, s));
300 42100
                        shardd->hashcircle[i].host = h;
301 42100
                        i++;
302 42100
                }
303 3775
        }
304 900
        assert (i == n_points);
305 900
        qsort( (void *) shardd->hashcircle, n_points,
306
            sizeof (struct shard_circlepoint), (compar) circlepoint_compare);
307
308 900
        if ((shardd->debug_flags & SHDBG_CIRCLE) == 0)
309 325
                return;
310
311 15725
        for (i = 0; i < n_points; i++)
312 15150
                SHDBG(SHDBG_CIRCLE, shardd,
313
                    "hashcircle[%5jd] = {point = %8x, host = %2u}\n",
314
                    (intmax_t)i, shardd->hashcircle[i].point,
315
                    shardd->hashcircle[i].host);
316 900
}
317
318
/*
319
 * ============================================================
320
 * configure the director backends
321
 */
322
323
static void
324 1150
shardcfg_backend_free(struct shard_backend *f)
325
{
326 1150
        if (f->freeptr)
327 875
                free (f->freeptr);
328 1150
        VRT_Assign_Backend(&f->backend, NULL);
329 1150
        memset(f, 0, sizeof(*f));
330 1150
}
331
332
static void
333 2425
shardcfg_backend_copyin(struct shard_backend *dst,
334
    const struct shard_backend *src)
335
{
336 2425
        dst->backend = src->backend;
337 2425
        dst->ident = src->ident ? strdup(src->ident) : NULL;
338 2425
        dst->rampup = src->rampup;
339 2425
}
340
341
static int
342 17850
shardcfg_backend_cmp(const struct shard_backend *a,
343
    const struct shard_backend *b)
344
{
345
        const char *ai, *bi;
346
347 17850
        ai = a->ident;
348 17850
        bi = b->ident;
349
350 17850
        assert(ai || a->backend);
351 17850
        assert(bi || b->backend);
352
353
        /* vcl_names are unique, so we can compare the backend pointers */
354 17850
        if (ai == NULL && bi == NULL)
355 1175
                return (a->backend != b->backend);
356
357 16675
        if (ai == NULL)
358 150
                ai = VRT_BACKEND_string(a->backend);
359
360 16675
        if (bi == NULL)
361 375
                bi = VRT_BACKEND_string(b->backend);
362
363 16675
        AN(ai);
364 16675
        AN(bi);
365 16675
        return (strcmp(ai, bi));
366 17850
}
367
368
/* for removal, we delete all instances if the backend matches */
369
static int
370 8125
shardcfg_backend_del_cmp(const struct shard_backend *task,
371
    const struct shard_backend *b)
372
{
373 8125
        assert(task->backend || task->ident);
374
375 8125
        if (task->ident == NULL)
376 225
                return (task->backend != b->backend);
377
378 7900
        return (shardcfg_backend_cmp(task, b));
379 8125
}
380
381
static const struct shard_backend *
382 2625
shardcfg_backend_lookup(const struct backend_reconfig *re,
383
    const struct shard_backend *b)
384
{
385 2625
        unsigned i, max = re->shardd->n_backend + re->hole_n;
386 2625
        const struct shard_backend *bb = re->shardd->backend;
387
388 2625
        if (max > 0)
389 2000
                AN(bb);
390
391 12525
        for (i = 0; i < max; i++) {
392 10100
                if (bb[i].backend == NULL)
393 150
                        continue;       // hole
394 9950
                if (!shardcfg_backend_cmp(b, &bb[i]))
395 200
                        return (&bb[i]);
396 9750
        }
397 2425
        return (NULL);
398 2625
}
399
400
static void
401 475
shardcfg_backend_expand(const struct backend_reconfig *re)
402
{
403 475
        unsigned min = re->hint;
404
405 475
        CHECK_OBJ_NOTNULL(re->shardd, SHARDDIR_MAGIC);
406
407 475
        min = vmax_t(unsigned, min, 16);
408
409 475
        if (re->shardd->l_backend < min)
410 475
                re->shardd->l_backend = min;
411
        else
412 0
                re->shardd->l_backend *= 2;
413
414 950
        re->shardd->backend = realloc(re->shardd->backend,
415 475
            re->shardd->l_backend * sizeof *re->shardd->backend);
416
417 475
        AN(re->shardd->backend);
418 475
}
419
420
static void
421 2425
shardcfg_backend_add(struct backend_reconfig *re,
422
    const struct shard_backend *b, uint32_t replicas)
423
{
424
        unsigned i;
425 2425
        struct shard_backend *bb = re->shardd->backend;
426
427 2425
        if (re->hole_n == 0) {
428 2325
                if (re->shardd->n_backend >= re->shardd->l_backend) {
429 475
                        shardcfg_backend_expand(re);
430 475
                        bb = re->shardd->backend;
431 475
                }
432 2325
                assert(re->shardd->n_backend < re->shardd->l_backend);
433 2325
                i = re->shardd->n_backend;
434 2325
        } else {
435 100
                assert(re->hole_i != UINT_MAX);
436 100
                do {
437 100
                        if (!bb[re->hole_i].backend)
438 100
                                break;
439 0
                } while (++(re->hole_i) < re->shardd->n_backend + re->hole_n);
440 100
                assert(re->hole_i < re->shardd->n_backend + re->hole_n);
441
442 100
                i = (re->hole_i)++;
443 100
                (re->hole_n)--;
444
        }
445
446 2425
        re->shardd->n_backend++;
447 2425
        shardcfg_backend_copyin(&bb[i], b);
448 2425
        bb[i].replicas = replicas;
449 2425
}
450
451
void
452 450
shardcfg_backend_clear(struct sharddir *shardd)
453
{
454
        unsigned i;
455 825
        for (i = 0; i < shardd->n_backend; i++)
456 375
                shardcfg_backend_free(&shardd->backend[i]);
457 450
        shardd->n_backend = 0;
458 450
}
459
460
461
static void
462 725
shardcfg_backend_del(struct backend_reconfig *re, struct shard_backend *spec)
463
{
464 725
        unsigned i, max = re->shardd->n_backend + re->hole_n;
465 725
        struct shard_backend * const bb = re->shardd->backend;
466
467 11900
        for (i = 0; i < max; i++) {
468 11175
                if (bb[i].backend == NULL)
469 3050
                        continue;       // hole
470 8125
                if (shardcfg_backend_del_cmp(spec, &bb[i]))
471 7350
                        continue;
472
473 775
                shardcfg_backend_free(&bb[i]);
474 775
                re->shardd->n_backend--;
475 775
                if (i < re->shardd->n_backend + re->hole_n) {
476 675
                        (re->hole_n)++;
477 675
                        re->hole_i = vmin(re->hole_i, i);
478 675
                }
479 775
        }
480 725
        VRT_Assign_Backend(&spec->backend, NULL);
481 725
}
482
483
static void
484 900
shardcfg_backend_finalize(struct backend_reconfig *re)
485
{
486
        unsigned i;
487 900
        struct shard_backend * const bb = re->shardd->backend;
488
489 1050
        while (re->hole_n > 0) {
490
                // trim end
491 225
                i = re->shardd->n_backend + re->hole_n - 1;
492 650
                while (re->hole_n && bb[i].backend == NULL) {
493 425
                        (re->hole_n)--;
494 425
                        i--;
495
                }
496
497 225
                if (re->hole_n == 0)
498 75
                        break;
499
500 150
                assert(re->hole_i < i);
501
502 150
                do {
503 150
                        if (!bb[re->hole_i].backend)
504 150
                                break;
505 0
                } while (++(re->hole_i) <= i);
506
507 150
                assert(re->hole_i < i);
508 150
                assert(bb[re->hole_i].backend == NULL);
509 150
                assert(bb[i].backend != NULL);
510
511 150
                memcpy(&bb[re->hole_i], &bb[i], sizeof(*bb));
512 150
                memset(&bb[i], 0, sizeof(*bb));
513
514 150
                (re->hole_n)--;
515 150
                (re->hole_i)++;
516
        }
517
518 900
        assert(re->hole_n == 0);
519 900
}
520
521
/*
522
 * ============================================================
523
 * work the change tasks
524
 */
525
526
static void
527 1000
shardcfg_apply_change(struct vsl_log *vsl, struct sharddir *shardd,
528
    const struct shard_change *change, VCL_INT replicas)
529
{
530
        struct shard_change_task *task, *clear;
531
        const struct shard_backend *b;
532
        uint32_t b_replicas;
533
534 3000
        struct backend_reconfig re = {
535 1000
                .shardd = shardd,
536 1000
                .hint = shardd->n_backend,
537
                .hole_n = 0,
538
                .hole_i = UINT_MAX
539
        };
540
541
        // XXX assert sharddir_locked(shardd)
542
543 1000
        clear = NULL;
544 4925
        VSTAILQ_FOREACH(task, &change->tasks, list) {
545 3925
                CHECK_OBJ_NOTNULL(task, SHARD_CHANGE_TASK_MAGIC);
546 3925
                switch (task->task) {
547
                case CLEAR:
548 375
                        clear = task;
549 375
                        re.hint = 0;
550 375
                        break;
551
                case ADD_BE:
552 2825
                        re.hint++;
553 2825
                        break;
554
                case REMOVE_BE:
555 725
                        re.hint--;
556 725
                        break;
557
                default:
558 0
                        INCOMPL();
559 0
                }
560 3925
        }
561
562 1000
        if (clear) {
563 325
                shardcfg_backend_clear(shardd);
564 325
                clear = VSTAILQ_NEXT(clear, list);
565 325
                if (clear == NULL)
566 100
                        return;
567 225
        }
568
569 900
        task = clear;
570 4250
        VSTAILQ_FOREACH_FROM(task, &change->tasks, list) {
571 3350
                CHECK_OBJ_NOTNULL(task, SHARD_CHANGE_TASK_MAGIC);
572 3350
                switch (task->task) {
573
                case CLEAR:
574 0
                        assert(task->task != CLEAR);
575 0
                        break;
576
                case ADD_BE:
577 2625
                        b = shardcfg_backend_lookup(&re, task->priv);
578
579 2625
                        if (b == NULL) {
580 2425
                                assert (task->weight >= 1);
581 2425
                                if (replicas * task->weight > UINT32_MAX)
582 0
                                        b_replicas = UINT32_MAX;
583
                                else
584 2425
                                        b_replicas = (uint32_t) // flint
585 2425
                                                (replicas * task->weight);
586
587 4850
                                shardcfg_backend_add(&re, task->priv,
588 2425
                                    b_replicas);
589 2425
                                break;
590
                        }
591
592 200
                        const char * const ident = b->ident;
593
594 200
                        shard_notice(vsl, shardd->name,
595
                            "backend %s%s%s already exists - skipping",
596
                            VRT_BACKEND_string(b->backend),
597
                            ident ? "/" : "",
598
                            ident ? ident : "");
599 200
                        break;
600
                case REMOVE_BE:
601 725
                        shardcfg_backend_del(&re, task->priv);
602 725
                        break;
603
                default:
604 0
                        INCOMPL();
605 0
                }
606 3350
        }
607 900
        shardcfg_backend_finalize(&re);
608 1000
}
609
610
/*
611
 * ============================================================
612
 * top reconfiguration function
613
 */
614
615
static VCL_BOOL
616 1475
change_reconfigure(VRT_CTX, struct shard_change *change, VCL_INT replicas)
617
{
618
        struct sharddir *shardd;
619
620 1475
        CHECK_OBJ_NOTNULL(change, SHARD_CHANGE_MAGIC);
621 1475
        assert (replicas > 0);
622 1475
        shardd = change->shardd;
623 1475
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
624
625 1475
        if (VSTAILQ_FIRST(&change->tasks) == NULL)
626 475
                return (1);
627
628 1000
        sharddir_wrlock(shardd);
629
630 1000
        shardcfg_apply_change(ctx->vsl, shardd, change, replicas);
631 1000
        shard_change_finish(change);
632
633 1000
        if (shardd->hashcircle)
634 450
                free(shardd->hashcircle);
635 1000
        shardd->hashcircle = NULL;
636
637 1000
        if (shardd->n_backend == 0) {
638 100
                shard_err0(ctx->vsl, shardd->name,
639
                    ".reconfigure() no backends");
640 100
                sharddir_unlock(shardd);
641 100
                return (0);
642
        }
643
644 900
        shardcfg_hashcircle(shardd);
645 900
        sharddir_unlock(shardd);
646 900
        return (1);
647 1475
}
648
649
VCL_BOOL
650 1050
shardcfg_reconfigure(VRT_CTX, struct sharddir *shardd, VCL_INT replicas)
651
{
652
        struct shard_change *change;
653
654 1050
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
655 1050
        if (replicas <= 0) {
656 50
                shard_err(ctx->vsl, shardd->name,
657
                    ".reconfigure() invalid replicas argument %ld", replicas);
658 50
                return (0);
659
        }
660
661 1000
        change = shard_change_get(ctx, shardd);
662 1000
        if (change == NULL)
663 0
                return (0);
664
665 1000
        return (change_reconfigure(ctx, change, replicas));
666 1050
}
667
668
/*
669
 * ============================================================
670
 * misc config related
671
 */
672
673
/* only for sharddir_delete() */
674
void
675 125
shardcfg_delete(const struct sharddir *shardd)
676
{
677
678 125
        AZ(shardd->n_backend);
679 125
        if (shardd->backend)
680 0
                free(shardd->backend);
681 125
        if (shardd->hashcircle)
682 0
                free(shardd->hashcircle);
683 125
}
684
685
VCL_VOID
686 50
shardcfg_set_warmup(struct sharddir *shardd, VCL_REAL ratio)
687
{
688 50
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
689 50
        assert(ratio >= 0 && ratio < 1);
690 50
        sharddir_wrlock(shardd);
691 50
        shardd->warmup = ratio;
692 50
        sharddir_unlock(shardd);
693 50
}
694
695
VCL_VOID
696 50
shardcfg_set_rampup(struct sharddir *shardd, VCL_DURATION duration)
697
{
698 50
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
699 50
        assert(duration >= 0);
700 50
        sharddir_wrlock(shardd);
701 50
        shardd->rampup_duration = duration;
702 50
        sharddir_unlock(shardd);
703 50
}
704
705
VCL_DURATION
706 4050
shardcfg_get_rampup(const struct sharddir *shardd, unsigned host)
707
{
708
        VCL_DURATION r;
709
710 4050
        CHECK_OBJ_NOTNULL(shardd, SHARDDIR_MAGIC);
711
        // assert sharddir_rdlock_held(shardd);
712 4050
        assert (host < shardd->n_backend);
713
714 4050
        if (isnan(shardd->backend[host].rampup))
715 3950
                r = shardd->rampup_duration;
716
        else
717 100
                r = shardd->backend[host].rampup;
718
719 4050
        return (r);
720
}