Statistics
| Branch: | Tag: | Revision:

root / doc / iallocator.rst @ fc6075dd

History | View | Annotate | Download (15.8 kB)

1
Ganeti automatic instance allocation
2
====================================
3

    
4
Documents Ganeti version 2.6
5

    
6
.. contents::
7

    
8
Introduction
9
------------
10

    
11
Currently in Ganeti the admin has to specify the exact locations for
12
an instance's node(s). This prevents a completely automatic node
13
evacuation, and is in general a nuisance.
14

    
15
The *iallocator* framework will enable automatic placement via
16
external scripts, which allows customization of the cluster layout per
17
the site's requirements.
18

    
19
User-visible changes
20
~~~~~~~~~~~~~~~~~~~~
21

    
22
There are two parts of the ganeti operation that are impacted by the
23
auto-allocation: how the cluster knows what the allocator algorithms
24
are and how the admin uses these in creating instances.
25

    
26
An allocation algorithm is just the filename of a program installed in
27
a defined list of directories.
28

    
29
Cluster configuration
30
~~~~~~~~~~~~~~~~~~~~~
31

    
32
At configure time, the list of the directories can be selected via the
33
``--with-iallocator-search-path=LIST`` option, where *LIST* is a
34
comma-separated list of directories. If not given, this defaults to
35
``$libdir/ganeti/iallocators``, i.e. for an installation under
36
``/usr``, this will be ``/usr/lib/ganeti/iallocators``.
37

    
38
Ganeti will then search for allocator script in the configured list,
39
using the first one whose filename matches the one given by the user.
40

    
41
Command line interface changes
42
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43

    
44
The node selection options in instance add and instance replace disks
45
can be replace by the new ``--iallocator=NAME`` option (shortened to
46
``-I``), which will cause the auto-assignement of nodes with the
47
passed iallocator. The selected node(s) will be show as part of the
48
command output.
49

    
50
IAllocator API
51
--------------
52

    
53
The protocol for communication between Ganeti and an allocator script
54
will be the following:
55

    
56
#. ganeti launches the program with a single argument, a filename that
57
   contains a JSON-encoded structure (the input message)
58

    
59
#. if the script finishes with exit code different from zero, it is
60
   considered a general failure and the full output will be reported to
61
   the users; this can be the case when the allocator can't parse the
62
   input message
63

    
64
#. if the allocator finishes with exit code zero, it is expected to
65
   output (on its stdout) a JSON-encoded structure (the response)
66

    
67
Input message
68
~~~~~~~~~~~~~
69

    
70
The input message will be the JSON encoding of a dictionary containing
71
all the required information to perform the operation. We explain the
72
contents of this dictionary in two parts: common information that every
73
type of operation requires, and operation-specific information.
74

    
75
Common information
76
++++++++++++++++++
77

    
78
All input dictionaries to the IAllocator must carry the following keys:
79

    
80
version
81
  the version of the protocol; this document
82
  specifies version 2
83

    
84
cluster_name
85
  the cluster name
86

    
87
cluster_tags
88
  the list of cluster tags
89

    
90
enabled_hypervisors
91
  the list of enabled hypervisors
92

    
93
ipolicy
94
  the cluster-wide instance policy (for information; the per-node group
95
  values take precedence and should be used instead)
96

    
97
request
98
  a dictionary containing the details of the request; the keys vary
99
  depending on the type of operation that's being requested, as
100
  explained in `Operation-specific input`_ below.
101

    
102
nodegroups
103
  a dictionary with the data for the cluster's node groups; it is keyed
104
  on the group UUID, and the values are a dictionary with the following
105
  keys:
106

    
107
  name
108
    the node group name
109
  alloc_policy
110
    the allocation policy of the node group (consult the semantics of
111
    this attribute in the :manpage:`gnt-group(8)` manpage)
112
  ipolicy
113
    the instance policy of the node group
114

    
115
instances
116
  a dictionary with the data for the current existing instance on the
117
  cluster, indexed by instance name; the contents are similar to the
118
  instance definitions for the allocate mode, with the addition of:
119

    
120
  admin_state
121
    if this instance is set to run (but not the actual status of the
122
    instance)
123

    
124
  nodes
125
    list of nodes on which this instance is placed; the primary node
126
    of the instance is always the first one
127

    
128
nodes
129
  dictionary with the data for the nodes in the cluster, indexed by
130
  the node name; the dict contains [*]_ :
131

    
132
  total_disk
133
    the total disk size of this node (mebibytes)
134

    
135
  free_disk
136
    the free disk space on the node
137

    
138
  total_memory
139
    the total memory size
140

    
141
  free_memory
142
    free memory on the node; note that currently this does not take
143
    into account the instances which are down on the node
144

    
145
  total_cpus
146
    the physical number of CPUs present on the machine; depending on
147
    the hypervisor, this might or might not be equal to how many CPUs
148
    the node operating system sees;
149

    
150
  primary_ip
151
    the primary IP address of the node
152

    
153
  secondary_ip
154
    the secondary IP address of the node (the one used for the DRBD
155
    replication); note that this can be the same as the primary one
156

    
157
  tags
158
    list with the tags of the node
159

    
160
  master_candidate:
161
    a boolean flag denoting whether this node is a master candidate
162

    
163
  drained:
164
    a boolean flag denoting whether this node is being drained
165

    
166
  offline:
167
    a boolean flag denoting whether this node is offline
168

    
169
  i_pri_memory:
170
    total memory required by primary instances
171

    
172
  i_pri_up_memory:
173
    total memory required by running primary instances
174

    
175
  group:
176
    the node group that this node belongs to
177

    
178
  No allocations should be made on nodes having either the ``drained``
179
  or ``offline`` flags set. More details about these of node status
180
  flags is available in the manpage :manpage:`ganeti(7)`.
181

    
182
.. [*] Note that no run-time data is present for offline, drained or
183
   non-vm_capable nodes; this means the tags total_memory,
184
   reserved_memory, free_memory, total_disk, free_disk, total_cpus,
185
   i_pri_memory and i_pri_up memory will be absent
186

    
187
Operation-specific input
188
++++++++++++++++++++++++
189

    
190
All input dictionaries to the IAllocator carry, in the ``request``
191
dictionary, detailed information about the operation that's being
192
requested. The required keys vary depending on the type of operation, as
193
follows.
194

    
195
In all cases, it includes:
196

    
197
  type
198
    the request type; this can be either ``allocate``, ``relocate``,
199
    ``change-group`` or ``node-evacuate``. The
200
    ``allocate`` request is used when a new instance needs to be placed
201
    on the cluster. The ``relocate`` request is used when an existing
202
    instance needs to be moved within its node group.
203

    
204
    The ``multi-evacuate`` protocol used to request that the script
205
    computes the optimal relocate solution for all secondary instances
206
    of the given nodes. It is now deprecated and needs only be
207
    implemented if backwards compatibility with Ganeti 2.4 and lower is
208
    needed.
209

    
210
    The ``change-group`` request is used to relocate multiple instances
211
    across multiple node groups. ``node-evacuate`` evacuates instances
212
    off their node(s). These are described in a separate :ref:`design
213
    document <multi-reloc-detailed-design>`.
214

    
215
For both allocate and relocate mode, the following extra keys are needed
216
in the ``request`` dictionary:
217

    
218
  name
219
    the name of the instance; if the request is a realocation, then this
220
    name will be found in the list of instances (see below), otherwise
221
    is the FQDN of the new instance; type *string*
222

    
223
  required_nodes
224
    how many nodes should the algorithm return; while this information
225
    can be deduced from the instace's disk template, it's better if
226
    this computation is left to Ganeti as then allocator scripts are
227
    less sensitive to changes to the disk templates; type *integer*
228

    
229
  disk_space_total
230
    the total disk space that will be used by this instance on the
231
    (new) nodes; again, this information can be computed from the list
232
    of instance disks and its template type, but Ganeti is better
233
    suited to compute it; type *integer*
234

    
235
.. pyassert::
236

    
237
   constants.DISK_ACCESS_SET == set([constants.DISK_RDONLY,
238
     constants.DISK_RDWR])
239

    
240
Allocation needs, in addition:
241

    
242
  disks
243
    list of dictionaries holding the disk definitions for this
244
    instance (in the order they are exported to the hypervisor):
245

    
246
    mode
247
      either :pyeval:`constants.DISK_RDONLY` or
248
      :pyeval:`constants.DISK_RDWR` denoting if the disk is read-only or
249
      writable
250

    
251
    size
252
      the size of this disk in mebibytes
253

    
254
  nics
255
    a list of dictionaries holding the network interfaces for this
256
    instance, containing:
257

    
258
    ip
259
      the IP address that Ganeti know for this instance, or null
260

    
261
    mac
262
      the MAC address for this interface
263

    
264
    bridge
265
      the bridge to which this interface will be connected
266

    
267
  vcpus
268
    the number of VCPUs for the instance
269

    
270
  disk_template
271
    the disk template for the instance
272

    
273
  memory
274
   the memory size for the instance
275

    
276
  os
277
   the OS type for the instance
278

    
279
  tags
280
    the list of the instance's tags
281

    
282
  hypervisor
283
    the hypervisor of this instance
284

    
285
Relocation:
286

    
287
  relocate_from
288
     a list of nodes to move the instance away from; for DRBD-based
289
     instances, this will contain a single node, the current secondary
290
     of the instance, whereas for shared-storage instance, this will
291
     contain also a single node, the current primary of the instance;
292
     type *list of strings*
293

    
294
As for ``node-evacuate``, it needs the following request arguments:
295

    
296
  instances
297
    a list of instance names to evacuate; type *list of strings*
298

    
299
  evac_mode
300
    specify which instances to evacuate; one of ``primary-only``,
301
    ``secondary-only``, ``all``, type *string*
302

    
303
``change-group`` needs the following request arguments:
304

    
305
  instances
306
    a list of instance names whose group to change; type
307
    *list of strings*
308

    
309
  target_groups
310
    must either be the empty list, or contain a list of group UUIDs that
311
    should be considered for relocating instances to; type
312
    *list of strings*
313

    
314
Response message
315
~~~~~~~~~~~~~~~~
316

    
317
The response message is much more simple than the input one. It is
318
also a dict having three keys:
319

    
320
success
321
  a boolean value denoting if the allocation was successful or not
322

    
323
info
324
  a string with information from the scripts; if the allocation fails,
325
  this will be shown to the user
326

    
327
result
328
  the output of the algorithm; even if the algorithm failed
329
  (i.e. success is false), this must be returned as an empty list
330

    
331
  for allocate/relocate, this is the list of node(s) for the instance;
332
  note that the length of this list must equal the ``requested_nodes``
333
  entry in the input message, otherwise Ganeti will consider the result
334
  as failed
335

    
336
  for the ``node-evacuate`` and ``change-group`` modes, this is a
337
  dictionary containing, among other information, a list of lists of
338
  serialized opcodes; see the :ref:`design document
339
  <multi-reloc-result>` for a detailed description
340

    
341
.. note:: Current Ganeti version accepts either ``result`` or ``nodes``
342
   as a backwards-compatibility measure (older versions only supported
343
   ``nodes``)
344

    
345
Examples
346
--------
347

    
348
Input messages to scripts
349
~~~~~~~~~~~~~~~~~~~~~~~~~
350

    
351
Input message, new instance allocation (common elements are listed this
352
time, but not included in further examples below)::
353

    
354
  {
355
    "version": 2,
356
    "cluster_name": "cluster1.example.com",
357
    "cluster_tags": [],
358
    "enabled_hypervisors": [
359
      "xen-pvm"
360
    ],
361
    "nodegroups": {
362
      "f4e06e0d-528a-4963-a5ad-10f3e114232d": {
363
        "name": "default",
364
        "alloc_policy": "preferred"
365
      }
366
    },
367
    "instances": {
368
      "instance1.example.com": {
369
        "tags": [],
370
        "should_run": false,
371
        "disks": [
372
          {
373
            "mode": "w",
374
            "size": 64
375
          },
376
          {
377
            "mode": "w",
378
            "size": 512
379
          }
380
        ],
381
        "nics": [
382
          {
383
            "ip": null,
384
            "mac": "aa:00:00:00:60:bf",
385
            "bridge": "xen-br0"
386
          }
387
        ],
388
        "vcpus": 1,
389
        "disk_template": "plain",
390
        "memory": 128,
391
        "nodes": [
392
          "nodee1.com"
393
        ],
394
        "os": "debootstrap+default"
395
      },
396
      "instance2.example.com": {
397
        "tags": [],
398
        "should_run": false,
399
        "disks": [
400
          {
401
            "mode": "w",
402
            "size": 512
403
          },
404
          {
405
            "mode": "w",
406
            "size": 256
407
          }
408
        ],
409
        "nics": [
410
          {
411
            "ip": null,
412
            "mac": "aa:00:00:55:f8:38",
413
            "bridge": "xen-br0"
414
          }
415
        ],
416
        "vcpus": 1,
417
        "disk_template": "drbd",
418
        "memory": 512,
419
        "nodes": [
420
          "node2.example.com",
421
          "node3.example.com"
422
        ],
423
        "os": "debootstrap+default"
424
      }
425
    },
426
    "nodes": {
427
      "node1.example.com": {
428
        "total_disk": 858276,
429
        "primary_ip": "198.51.100.1",
430
        "secondary_ip": "192.0.2.1",
431
        "tags": [],
432
        "group": "f4e06e0d-528a-4963-a5ad-10f3e114232d",
433
        "free_memory": 3505,
434
        "free_disk": 856740,
435
        "total_memory": 4095
436
      },
437
      "node2.example.com": {
438
        "total_disk": 858240,
439
        "primary_ip": "198.51.100.2",
440
        "secondary_ip": "192.0.2.2",
441
        "tags": ["test"],
442
        "group": "f4e06e0d-528a-4963-a5ad-10f3e114232d",
443
        "free_memory": 3505,
444
        "free_disk": 848320,
445
        "total_memory": 4095
446
      },
447
      "node3.example.com.com": {
448
        "total_disk": 572184,
449
        "primary_ip": "198.51.100.3",
450
        "secondary_ip": "192.0.2.3",
451
        "tags": [],
452
        "group": "f4e06e0d-528a-4963-a5ad-10f3e114232d",
453
        "free_memory": 3505,
454
        "free_disk": 570648,
455
        "total_memory": 4095
456
      }
457
    },
458
    "request": {
459
      "type": "allocate",
460
      "name": "instance3.example.com",
461
      "required_nodes": 2,
462
      "disk_space_total": 3328,
463
      "disks": [
464
        {
465
          "mode": "w",
466
          "size": 1024
467
        },
468
        {
469
          "mode": "w",
470
          "size": 2048
471
        }
472
      ],
473
      "nics": [
474
        {
475
          "ip": null,
476
          "mac": "00:11:22:33:44:55",
477
          "bridge": null
478
        }
479
      ],
480
      "vcpus": 1,
481
      "disk_template": "drbd",
482
      "memory": 2048,
483
      "os": "debootstrap+default",
484
      "tags": [
485
        "type:test",
486
        "owner:foo"
487
      ],
488
      hypervisor: "xen-pvm"
489
    }
490
  }
491

    
492
Input message, reallocation::
493

    
494
  {
495
    "version": 2,
496
    ...
497
    "request": {
498
      "type": "relocate",
499
      "name": "instance2.example.com",
500
      "required_nodes": 1,
501
      "disk_space_total": 832,
502
      "relocate_from": [
503
        "node3.example.com"
504
      ]
505
    }
506
  }
507

    
508

    
509
Response messages
510
~~~~~~~~~~~~~~~~~
511
Successful response message::
512

    
513
  {
514
    "success": true,
515
    "info": "Allocation successful",
516
    "result": [
517
      "node2.example.com",
518
      "node1.example.com"
519
    ]
520
  }
521

    
522
Failed response message::
523

    
524
  {
525
    "success": false,
526
    "info": "Can't find a suitable node for position 2 (already selected: node2.example.com)",
527
    "result": []
528
  }
529

    
530
Successful node evacuation message::
531

    
532
  {
533
    "success": true,
534
    "info": "Request successful",
535
    "result": [
536
      [
537
        "instance1",
538
        "node3"
539
      ],
540
      [
541
        "instance2",
542
        "node1"
543
      ]
544
    ]
545
  }
546

    
547

    
548
Command line messages
549
~~~~~~~~~~~~~~~~~~~~~
550
::
551

    
552
  # gnt-instance add -t plain -m 2g --os-size 1g --swap-size 512m --iallocator hail -o debootstrap+default instance3
553
  Selected nodes for the instance: node1.example.com
554
  * creating instance disks...
555
  [...]
556

    
557
  # gnt-instance add -t plain -m 3400m --os-size 1g --swap-size 512m --iallocator hail -o debootstrap+default instance4
558
  Failure: prerequisites not met for this operation:
559
  Can't compute nodes using iallocator 'hail': Can't find a suitable node for position 1 (already selected: )
560

    
561
  # gnt-instance add -t drbd -m 1400m --os-size 1g --swap-size 512m --iallocator hail -o debootstrap+default instance5
562
  Failure: prerequisites not met for this operation:
563
  Can't compute nodes using iallocator 'hail': Can't find a suitable node for position 2 (already selected: node1.example.com)
564

    
565
Reference implementation
566
~~~~~~~~~~~~~~~~~~~~~~~~
567

    
568
Ganeti's default iallocator is "hail" which is available when "htools"
569
components have been enabled at build time (see :doc:`install-quick` for
570
more details).
571

    
572
.. vim: set textwidth=72 :
573
.. Local Variables:
574
.. mode: rst
575
.. fill-column: 72
576
.. End: