Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill trailing whitespaces in docs.
[simgrid.git] / docs / source / XML_reference.rst
1 .. raw:: html
2
3    <object id="TOC" data="graphical-toc.svg" type="image/svg+xml"></object>
4    <script>
5    window.onload=function() { // Wait for the SVG to be loaded before changing it
6      var elem=document.querySelector("#TOC").contentDocument.getElementById("ReferenceBox")
7      elem.style="opacity:0.93999999;fill:#ff0000;fill-opacity:0.1;stroke:#000000;stroke-width:0.35277778;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1";
8    }
9    </script>
10    <br/>
11    <br/>
12
13 .. _platform_reference:
14
15 Complete XML Reference
16 **********************
17
18 Your platform description should follow the specification presented in the
19 `simgrid.dtd <https://simgrid.org/simgrid.dtd>`_ DTD file. The same DTD is used for both platform and deployment files.
20
21 -------------------------------------------------------------------------------
22
23 .. _pf_tag_disk:
24
25 <disk>
26 ------
27
28 SimGrid can simulate the time it takes to read or write data on disk, even if the stored data is not made persistent in
29 any way by SimGrid. This means that your application will correctly be slowed down when doing simulated I/O, but there
30 is no way to get the data stored this way.
31
32 We decided to not model anything beyond raw access in SimGrid because we believe that there is not single way of doing so.
33 We provide an example model of file system as a plugin, (sparsely) documented in :ref:`plugin_filesystem`.
34
35 **Parent tags:** :ref:`pf_tag_host` |br|
36 **Children tags:** :ref:`pf_tag_prop` |br|
37 **Attributes:**
38
39 :``id``: A name of your choice (must be unique on this host).
40 :``read_bw``: Read bandwidth for this disk. You must specify a unit as follows.
41
42    **Units in bytes and powers of 2** (1 KiBps = 1,024 Bps):
43      Bps, KiBps, MiBps, GiBps, TiBps, PiBps, or EiBps. |br|
44    **Units in bits  and powers of 2** (1 Bps = 8 bps):
45      bps, Kibps, Mibps, Gibps, Tibps, Pibps, or Eibps. |br|
46    **Units in bytes and powers of 10**  (1 KBps = 1,000 Bps):
47      Bps, KBps, MBps, GBps, TBps, PBps, or EBps. |br|
48    **Units in bits  and powers of 10:**
49      bps, Kbps, Mbps, Gbps, Tbps, Pbps, or Ebps.
50
51 :``write_bw``: Write bandwidth for this disk. You must specify a unit as for the read bandwidth.
52
53 .. code-block:: xml
54
55     <host id="alice" speed="1Gf">
56       <disk id="Disk1" read_bw="200MBps" write_bw="80MBps">
57         <!-- you can add properties for anything you want: they are not used by SimGrid -->
58         <prop id="content" value="storage/content/small_content.txt"/>
59       </disk>
60       <prop id="ram" value="100B" />
61     </host>
62
63 -------------------------------------------------------------------------------
64
65 .. _pf_tag_config:
66
67 <config>
68 --------
69
70 Adding configuration flags directly into the platform file becomes particularly
71 useful when the realism of the described platform depends on some specific
72 flags. For example, this could help you to finely tune SMPI. Almost all
73 :ref:`command-line configuration items <options_list>` can be configured this
74 way.
75
76 Each configuration flag is described as a :ref:`pf_tag_prop` whose ``id`` is the
77 name of the flag and ``value`` is what it has to be set to.
78
79 **Parent tags:** :ref:`pf_tag_platform` (must appear before any other tags) |br|
80 **Children tags:** :ref:`pf_tag_prop` |br|
81 **Attributes:** none
82
83 .. code-block:: xml
84
85    <?xml version = '1.0'?>
86    <!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
87    <platform version = "4.1">
88      <config>
89        <prop id = "maxmin/precision" value = "0.000010" />
90        <prop id = "cpu/optim" value = "TI" />
91        <prop id = "network/model" value = "SMPI" />
92        <prop id = "smpi/bw-factor" value = "65472:0.940694;15424:0.697866;9376:0.58729" />
93      </config>
94
95      <!-- The rest of your platform -->
96    </platform>
97
98 -------------------------------------------------------------------------------
99
100 .. _pf_tag_host:
101
102 <host>
103 ------
104
105 A host is the computing resource on which an actor can run. See :cpp:class:`simgrid::s4u::Host`.
106
107 **Parent tags:** :ref:`pf_tag_zone` (only leaf zones, i.e., zones containing neither inner zones nor clusters) |br|
108 **Children tags:** :ref:`pf_tag_mount`, :ref:`pf_tag_prop`, :ref:`pf_tag_disk` |br|
109 **Attributes:**
110
111 :``id``: Host name.
112    Must be unique over the whole platform.
113 :``speed``: Computational power (per core, in flop/s).
114    If you use DVFS, provide a comma-separated list of values for each pstate (see :ref:`howto_dvfs`).
115 :``core``: Amount of cores (default: 1).
116    See :ref:`howto_multicore`.
117 :``availability_file``:
118    File containing the availability profile.
119    Almost every lines of such files describe timed events as ``date ratio``.
120    Example:
121
122    .. code-block:: python
123
124       1 0.5
125       2 0.2
126       5 1
127       LOOPAFTER 5
128
129    - At time t = 1, half of the host computational power (0.5 means 50%) is used to process some background load, hence
130      only 50% of this initial power remains available to your own simulation.
131    - At time t = 2, the available power drops at 20% of the initial value.
132    - At time t = 5, the host can compute at full speed again.
133    - At time t = 10, the profile is reset (as we are 5 seconds after the last event). Then the available speed will drop
134      again to 50% at time t = 11.
135
136    If your profile does not contain any LOOPAFTER line, then it will
137    be executed only once and not repeated.
138
139    .. warning:: Don't get fooled: Bandwidth and Latency profiles of a :ref:`pf_tag_link` contain absolute values, while
140       Availability profiles of a :ref:`pf_tag_host` contain ratios.
141 :``state_file``: File containing the state profile.
142    Almost every lines of such files describe timed events as ``date boolean``.
143    Example:
144
145    .. code-block:: python
146
147       1 0
148       2 1
149       LOOPAFTER 8
150
151    - At time t = 1, the host is turned off (a zero value means OFF)
152    - At time t = 2, the host is turned back on (any other value than zero means ON)
153    - At time t = 10, the profile is reset (as we are 8 seconds after the last event). Then the host will be turned off
154      again at time t = 11.
155
156    If your profile does not contain any LOOPAFTER line, then it will
157    be executed only once and not repeated.
158
159 :``coordinates``: Vivaldi coordinates (meaningful for Vivaldi zones only).
160    See :ref:`pf_tag_peer`.
161 :``pstate``: Initial pstate (default: 0, the first one).
162    See :ref:`howto_dvfs`.
163
164 -------------------------------------------------------------------------------
165
166 .. _pf_tag_link:
167
168 <link>
169 ------
170
171 SimGrid links usually represent one-hop network connections (see :cpp:class:`simgrid::s4u::Link`), i.e., a single wire.
172 They can also be used to abstract a larger network interconnect, e.g., the entire transcontinental network, into a
173 single element.
174
175 **Parent tags:** :ref:`pf_tag_zone` (both leaf zones and inner zones) |br|
176 **Children tags:** :ref:`pf_tag_prop` |br|
177 **Attributes:**
178
179 :``id``:  Link name. Must be unique over the whole platform.
180 :``bandwidth``: Maximum bandwidth for this link. You must specify a unit as follows.
181
182    **Units in bytes and powers of 2** (1 KiBps = 1,024 Bps):
183      Bps, KiBps, MiBps, GiBps, TiBps, PiBps, or EiBps. |br|
184    **Units in bits  and powers of 2** (1 Bps = 8 bps):
185      bps, Kibps, Mibps, Gibps, Tibps, Pibps, or Eibps. |br|
186    **Units in bytes and powers of 10**  (1 KBps = 1,000 Bps):
187      Bps, KBps, MBps, GBps, TBps, PBps, or EBps. |br|
188    **Units in bits  and powers of 10:**
189      bps, Kbps, Mbps, Gbps, Tbps, Pbps, or Ebps.
190
191 :``latency``: Latency for this link (default: 0.0). You must specify a unit as follows.
192
193    ==== =========== ======================
194    Unit Meaning     Duration in seconds
195    ==== =========== ======================
196    ps   picosecond  10⁻¹² = 0.000000000001
197    ns   nanosecond  10⁻⁹ = 0.000000001
198    us   microsecond 10⁻⁶ = 0.000001
199    ms   millisecond 10⁻³ = 0.001
200    s    second      1
201    m    minute      60
202    h    hour        60 * 60
203    d    day         60 * 60 * 24
204    w    week        60 * 60 * 24 * 7
205    ==== =========== ======================
206
207 :``sharing_policy``: Sharing policy for the link. Possible values are ``SHARED``, ``FATPIPE`` or ``SPLITDUPLEX``
208    (default: ``SPLITDUPLEX``).
209
210    If set to ``SPLITDUPLEX``, the link models the full-duplex
211    behavior, as meant in TCP or UDP. To that extend, the link is
212    actually split in two links whose names are suffixed with "_UP" and
213    "_DOWN". You should then specify the direction to use when
214    referring to that link in a :ref:`pf_tag_link_ctn`.
215
216    If set to ``FATPIPE``, flows have no impact on each other, hence
217    each flow can exploit the full bandwidth. This models Internet
218    backbones that cannot get saturated by your application. From your
219    application point of view, there is no congestion on these
220    backbones.
221
222    If set to ``SHARED``, the available bandwidth is fairly shared
223    among ALL flows traversing this link. The resulting link is not
224    full-duplex (as UDP or TCP would be): communications in both
225    directions share the same link. Prefer ``SPLITDUPLEX`` for TCP flows.
226
227 :``bandwidth_file``: File containing the bandwidth profile.
228    Almost every lines of such files describe timed events as ``date
229    bandwidth`` (in bytes per second).
230    Example:
231
232    .. code-block:: python
233
234       4.0 40000000
235       8.0 60000000
236       LOOPAFTER 12.0
237
238    - At time t = 4, the bandwidth is of 40 MBps.
239    - At time t = 8, it raises to 60MBps.
240    - At time t = 24, it drops at 40 MBps again.
241
242    If your profile does not contain any LOOPAFTER line, then it will
243    be executed only once and not repeated.
244
245    .. warning:: Don't get fooled: Bandwidth and Latency profiles of a :ref:`pf_tag_link` contain absolute values, while
246       Availability profiles of a :ref:`pf_tag_host` contain ratios.
247
248 :``latency_file``: File containing the latency profile.
249    Almost every lines of such files describe timed events as ``date
250    latency`` (in seconds).
251    Example:
252
253    .. code-block:: python
254
255       1.0 0.001
256       3.0 0.1
257       LOOPAFTER 5.0
258
259    - At time t = 1, the latency is of 1ms (0.001 second)
260    - At time t = 3, the latency is of 100ms (0.1 second)
261    - At time t = 8 (5 seconds after the last event), the profile loops.
262    - At time t = 9 (1 second after the loop reset), the latency is back at 1ms.
263
264    If your profile does not contain any LOOPAFTER line, then it will
265    be executed only once and not repeated.
266
267   .. warning:: Don't get fooled: Bandwidth and Latency profiles of a :ref:`pf_tag_link` contain absolute values, while
268       Availability profiles of a :ref:`pf_tag_host` contain ratios.
269
270 :``state_file``: File containing the state profile. See :ref:`pf_tag_host`.
271
272 -------------------------------------------------------------------------------
273
274 .. _pf_tag_link_ctn:
275
276 <link_ctn>
277 ----------
278
279 An element in a route, representing a previously defined link.
280
281 **Parent tags:** :ref:`pf_tag_route` |br|
282 **Children tags:** none |br|
283 **Attributes:**
284
285 :``id``: Link that is to be included in this route.
286 :``direction``: either ``UP`` (by default) or ``DOWN``, specifying whether to
287                 use the uplink or downlink component of the link (that must
288                 follow the ``SPLITDUPLEX`` sharing policy). |br|
289                 Please refer to the ``sharing_policy`` attribute in
290                 :ref:`pf_tag_link`.
291
292 -------------------------------------------------------------------------------
293
294 .. _pf_tag_peer:
295
296 <peer>
297 ------
298
299 This tag represents a peer, as in Peer-to-Peer (P2P) networks. It is
300 handy to model situations where hosts have an asymmetric
301 connectivity. Computers connected through set-top-boxes usually have a
302 much better download rate than their upload rate.  To model this,
303 <peer> creates and connects several elements: a host, an upload link
304 and a download link.
305
306 **Parent tags:** :ref:`pf_tag_zone` (only with Vivaldi routing) |br|
307 **Children tags:** none |br|
308 **Attributes:**
309
310 :``id``: Name of the host. Must be unique on the whole platform.
311 :``speed``: Computational power (in flop/s).
312
313    If you use DVFS, provide a comma-separated list of values for each pstate (see :ref:`howto_dvfs`).
314 :``bw_in``: Bandwidth of the private downstream link, along with its
315             unit. See :ref:`pf_tag_link`.
316 :``bw_out``: Bandwidth of the private upstream link, along with its
317              unit. See :ref:`pf_tag_link`.
318 :``lat``: Latency of both private links. See :ref:`pf_tag_link`.
319 :``coordinates``: Coordinates of the gateway for this peer.
320
321    The communication latency between a host A = (xA,yA,zA) and a host B = (xB,yB,zB) is computed as follows:
322
323    latency = sqrt( (xA-xB)² + (yA-yB)² ) + zA + zB
324
325    See the documentation of
326    :cpp:class:`simgrid::kernel::routing::VivaldiZone` for details on
327    how the latency is computed from the coordinates, and on how the up
328    and down bandwidth are used.
329 :``availability_file``: File containing the availability profile.
330    See the full description in :ref:`pf_tag_host`
331 :``state_file``: File containing the state profile.
332    See the full description in :ref:`pf_tag_host`
333
334 -------------------------------------------------------------------------------
335
336 .. _pf_tag_platform:
337
338 <platform>
339 ----------
340
341 **Parent tags:** none (this is the root tag of every file) |br|
342 **Children tags:** :ref:`pf_tag_config` (must come first),
343 :ref:`pf_tag_cluster`, :ref:`pf_tag_cabinet`, :ref:`pf_tag_peer`,
344 :ref:`pf_tag_zone`, :ref:`pf_tag_trace`, :ref:`pf_tag_trace_connect`, or
345 :ref:`pf_tag_actor` in :ref:`deployment <deploy>` files. |br|
346 **Attributes:**
347
348 :``version``: Version of the DTD, describing the whole XML format.
349               This versioning allow future evolutions, even if we
350               avoid backward-incompatible changes. The current version
351               is **4.1**. The ``simgrid_update_xml`` program can
352               upgrade most of the past platform files to the most recent
353               formalism.
354
355 -------------------------------------------------------------------------------
356
357 .. _pf_tag_prop:
358
359 <prop>
360 ------
361
362 This tag can be used to attach user-defined properties to some
363 platform elements. Both the name and the value can be any string of
364 your wish. You can use this to pass extra parameters to your code and
365 the plugins.
366
367 From your code, you can interact with these properties using the
368 following functions:
369
370 - Actor: :cpp:func:`simgrid::s4u::Actor::get_property` or :cpp:func:`MSG_process_get_property_value`
371 - Cluster: this is a zone, see below.
372 - Host: :cpp:func:`simgrid::s4u::Host::get_property` or :cpp:func:`MSG_host_get_property_value`
373 - Link: :cpp:func:`simgrid::s4u::Link::get_property`
374 - Disk: :cpp:func:`simgrid::s4u::Disk::get_property`
375 - Zone: :cpp:func:`simgrid::s4u::NetZone::get_property` of :cpp:func:`MSG_zone_get_property_value`
376
377 **Parent tags:** :ref:`pf_tag_actor`, :ref:`pf_tag_config`, :ref:`pf_tag_cluster`, :ref:`pf_tag_host`,
378 :ref:`pf_tag_link`, :ref:`pf_tag_disk`,:ref:`pf_tag_zone` |br|
379 **Children tags:** none |br|
380 **Attributes:**
381
382 :``id``: Name of the defined property.
383 :``value``: Value of the defined property.
384
385 -------------------------------------------------------------------------------
386
387 .. _pf_tag_route:
388
389 <route>
390 -------
391
392 A path between two network locations, composed of several occurrences
393 of :ref:`pf_tag_link` .
394
395 **Parent tags:** :ref:`pf_tag_zone` |br|
396 **Children tags:** :ref:`pf_tag_link_ctn` |br|
397 **Attributes:**
398
399 :``src``: Host from which this route starts. Must be an existing host.
400 :``dst``: Host to which this route leads. Must be an existing host.
401 :``symmetrical``: Whether this route is symmetrical, ie, whether we
402                   are defining the route ``dst -> src`` at the same
403                   time. Valid values: ``yes``, ``no``, ``YES``, ``NO``.
404
405 -------------------------------------------------------------------------------
406
407 .. _pf_tag_router:
408
409 <router>
410 ------------------------------------------------------------------
411
412 A router is similar to a :ref:`pf_tag_host`, but it cannot contain
413 any actor. It is only useful to some routing algorithms. In
414 particular, they are useful when you want to use the NS3 bindings to
415 break the routes that are longer than 1 hop.
416
417 **Parent tags:** :ref:`pf_tag_zone` (only leaf zones, i.e., zones containing neither inner zones nor clusters) |br|
418 **Attributes:**
419
420 :``id``: Router name.
421    No other host or router may have the same name over the whole platform.
422 :``coordinates``: Vivaldi coordinates. See :ref:`pf_tag_peer`.
423
424 -------------------------------------------------------------------------------
425
426 .. _pf_tag_zone:
427
428 <zone>
429 ------
430
431 A networking zone is an area in which elements are located. See :cpp:class:`simgrid::s4u::NetZone`.
432
433 **Parent tags:** :ref:`pf_tag_platform`, :ref:`pf_tag_zone` (only internal nodes, i.e., zones
434 containing only inner zones or clusters but no basic
435 elements such as host or peer) |br|
436 **Children tags (if internal zone):** :ref:`pf_tag_cluster`, :ref:`pf_tag_link`, :ref:`pf_tag_zone` |br|
437 **Children tags (if leaf zone):** :ref:`pf_tag_host`, :ref:`pf_tag_link`, :ref:`pf_tag_peer` |br|
438 **Attributes:**
439
440 :``id``: Zone name.
441    No other zone may have the same name over the whole platform.
442 :``routing``: Routing algorithm to use.
443
444 -------------------------------------------------------------------------------
445
446 .. _pf_tag_zoneRoute:
447
448 <zoneRoute>
449 -----------
450
451 The purpose of this entity is to define a route between two zones.
452 Recall that all zones form a tree, so to connect two sibling zones,
453 you must give such a zoneRoute specifying the source and destination zones,
454 along with the gateway in each zone (i.e., the point to reach within that zone to reach the zone),
455 and the list of links to go from one zone to another.
456
457 **Parent tags:** :ref:`pf_tag_zone` |br|
458 **Children tags:** :ref:`pf_tag_link_ctn` |br|
459 **Attributes:**
460
461 :``src``: Zone from which this route starts. Must be an existing zone.
462 :``dst``: Zone to which this route leads. Must be an existing zone.
463 :``gw_src``: Netpoint (within src zone) from which this route starts. Must be an existing host/router.
464 :``gw_dst``: Netpoint (within dst zone) to which this route leads. Must be an existing host/router.
465 :``symmetrical``: Whether this route is symmetrical, ie, whether we
466                   are defining the route ``dst -> src`` at the same
467                   time. Valid values: ``yes``, ``no``, ``YES``, ``NO``.
468
469 -------------------------------------------------------------------------------
470
471 .. _pf_tag_cluster:
472
473 <cluster>
474 ---------
475
476 This tag is commonly used when one wants to define many hosts and a network quickly.
477 Technically, cluster is a meta-tag: **from the inner SimGrid point of
478 view, a cluster is a network zone where some optimized routing is defined**.
479 The default inner organization of the cluster is as follow:
480
481 .. code-block:: text
482
483                  __________
484                 |          |
485                 |  router  |
486     ____________|__________|_____________ backbone
487       |   |   |              |     |   |
488     l0| l1| l2|           l97| l96 |   | l99
489       |   |   |   ........   |     |   |
490       |                                |
491     c-0.me                             c-99.me
492
493
494 Here, a set of **hosts** is defined. Each of them has a **link**
495 to a central backbone (backbone is a link itself, as a link can
496 be used to represent a switch).
497 A **router** allows to connect a **cluster** to the outside world. Internally,
498 SimGrid treats a cluster as a network zone containing all hosts: the router is the
499 gateway for the cluster.
500
501 There is an alternative organization, which is as follows:
502
503 .. code-block:: text
504
505          __________
506         |          |
507         |  router  |
508         |__________|
509             / | \
510            /  |  \
511        l0 / l1|   \l2
512          /    |    \
513         /     |     \
514     host0   host1   host2
515
516 The principle is the same, except that there is no backbone. This representation
517 can be obtained easily: just do not set the bb_* attributes.
518
519 **Parent tags:** :ref:`pf_tag_platform`, :ref:`pf_tag_zone` |br|
520 **Children tags:** none |br|
521 **Attributes:**
522
523 :``id``: The identifier of the cluster. Facilitates referring to this cluster.
524 :``prefix``: Each node of the cluster has to have a name. This name will be prefixed with this prefix.
525 :``suffix``: Each node of the cluster will be suffixed with this suffix
526 :``radical``: Regexp used to generate cluster nodes name.
527
528     Syntax: "10-20" will give you 11 machines numbered from 10 to 20, "10-20;2" will give you 12 machines, one with the number 2, others numbered as before.
529
530     The produced number is concatenated between prefix and suffix to form machine names.
531 :``speed``: Same as the ``speed`` attribute of the :ref:`pf_tag_host` tag.
532 :``core``: Same as the ``core`` attribute of the :ref:`pf_tag_host` tag.
533 :``bw``: Bandwidth for the links between nodes and backbone (if any). See :ref:`pf_tag_link` for syntax/details.
534 :``lat``: Latency for the links between nodes and backbone (if any). See :ref:`pf_tag_link` for syntax/details.
535 :``sharing_policy``: Sharing policy for the links between nodes and backbone (if any). See :ref:`pf_tag_link` for syntax/details.
536 :``bb_bw``: Bandwidth for backbone (if any). See :ref:`pf_tag_link` for syntax/details.
537
538     If bb_bw and bb_lat attributes are omitted, no backbone is created (alternative cluster architecture described earlier).
539 :``bb_lat``: Latency for backbone (if any). See :ref:`pf_tag_link` section for syntax/details.
540
541     If bb_lat and bb_bw attributes are omitted, no backbone is created (alternative cluster architecture described earlier).
542 :``bb_sharing_policy``: Sharing policy for the backbone (if any). See :ref:`pf_tag_link` section for syntax/details.
543 :``limiter_link``: Bandwidth for limiter link (if any).
544
545     This adds a specific link for each node, to set the maximum bandwidth reached when communicating in both directions at the same time.
546
547     In theory this value should be 2*bw for splitduplex links, but in reality this might be less. This value will depend heavily on the communication model, and on the cluster's hardware, so no default value can be set, this has to be measured.
548
549     More details can be obtained in `Toward Better Simulation of MPI Applications on Ethernet/TCP Networks <https://hal.inria.fr/hal-00919507/>`_
550 :``loopback_bw``: Bandwidth for loopback (if any). See :ref:`pf_tag_link` section for syntax/details.
551
552     If loopback_bw and loopback_lat attributes are omitted, no loopback link is created and all intra-node communication will use the main network link of the node.
553
554     The sharing policy of a loopback link is **FATPIPE** :ref:`pf_tag_link`.
555 :``loopback_lat``: Latency for loopback (if any). See loopback_bw for more info.
556 :``topology``: Network topology to use.
557
558     SimGrid currently supports FLAT (with or without backbone, as described before), TORUS, FAT_TREE and DRAGONFLY attributes for this tag.
559
560     See :ref:`platform_examples` for more details.
561
562 :``topo_parameters``: Specific parameters to pass for the topology defined in the topology tag.
563
564     For torus networks, comma-separated list of the number of nodes in each dimension of the torus.
565
566     Please refer to :ref:`platform_examples`.
567
568
569 Cluster example
570 ^^^^^^^^^^^^^^^
571
572 Consider the following two (and independent) uses of the ``cluster`` tag:
573
574 .. code-block:: xml
575
576     <cluster id="my_cluster_1" prefix="" suffix="" radical="0-262144"
577          speed="1e9" bw="125e6" lat="5E-5"/>
578
579     <cluster id="my_cluster_2" prefix="c-" suffix=".me" radical="0-99"
580          speed="1e9" bw="125e6" lat="5E-5"
581          bb_bw="2.25e9" bb_lat="5E-4"/>
582
583
584 The second example creates one router and 100 machines with the following names:
585
586 .. code-block:: text
587
588     c-my_cluster_2_router.me
589     c-0.me
590     c-1.me
591     c-2.me
592     ...
593     c-99.me
594
595 .. note::
596
597     The router name is defined as the resulting string: prefix + clusterId + "_router" + suffix.
598     In this case: *my_cluster_1_router* and *my_cluster_2_router.me*.
599
600 -------------------------------------------------------------------------------
601
602 .. _pf_tag_cabinet:
603
604 <cabinet>
605 ---------
606
607 .. note::
608     This tag is only available when the routing mode of the network zone
609     is set to ``Cluster``.
610
611 The cabinet tag is, like the :ref:`pf_tag_cluster` tag,
612 a meta-tag. This means that it is simply a shortcut for creating a set of (homogenous) hosts and links quickly;
613 unsurprisingly, this tag was introduced to setup cabinets in data centers. Unlike
614 :ref:`pf_tag_cluster`, however, the :ref:`pf_tag_cabinet` assumes that you create the backbone
615 and routers yourself; see our examples below.
616
617 **Parent tags:** :ref:`pf_tag_zone` |br|
618 **Children tags:** none |br|
619 **Attributes:**
620
621 :``id``: The identifier of the cabinet. Facilitates referring to it.
622 :``prefix``: Each node of the cabinet has to have a name. This name will be prefixed with this prefix.
623 :``suffix``: Each node of the cabinet will be suffixed with this suffix.
624 :``radical``: Regexp used to generate cabinet nodes name.
625     Syntax: "10-20" will give you 11 machines numbered from 10 to 20, "10-20;2" will give you 12 machines, one with the number 2, others numbered as before.
626
627     The produced number is concatenated between prefix and suffix to form machine names.
628 :``speed``: Same as the ``speed`` attribute of the :ref:`pf_tag_host` tag.
629 :``bw``: Bandwidth for the links between nodes and backbone (if any). See the :ref:`pf_tag_link` for syntax/details.
630 :``lat``: Latency for the links between nodes and backbone (if any). See the :ref:`pf_tag_link` for syntax/details.
631
632 .. note::
633     Please note that as of now, it is impossible to change attributes such as,
634     amount of cores (always set to 1), the initial state of hosts/links
635     (always set to ON), the sharing policy of the links (always set to **SPLITDUPLEX** :ref:`pf_tag_link` ).
636
637
638 Cabinet example
639 ^^^^^^^^^^^^^^^
640 The following example shows how to use the cabinet tag.
641
642 .. literalinclude:: ../../examples/platforms/meta_cluster.xml
643
644 \note
645    Please note that you must specify the :ref:`pf_backbone` tag by yourself;
646    this is not done automatically and there are no checks
647    that ensure this backbone was defined.
648
649 The hosts generated in the above example are named host-1.cluster, host-2.cluster1
650 etc.
651
652 .. |br| raw:: html
653
654    <br />