Statistics
| Branch: | Tag: | Revision:

root / man / hspace.rst @ 13d26b66

History | View | Annotate | Download (13.8 kB)

1 5a19bd35 Iustin Pop
HSPACE(1) Ganeti | Version @GANETI_VERSION@
2 5a19bd35 Iustin Pop
===========================================
3 49148d15 Iustin Pop
4 49148d15 Iustin Pop
NAME
5 49148d15 Iustin Pop
----
6 49148d15 Iustin Pop
7 49148d15 Iustin Pop
hspace - Cluster space analyzer for Ganeti
8 49148d15 Iustin Pop
9 49148d15 Iustin Pop
SYNOPSIS
10 49148d15 Iustin Pop
--------
11 49148d15 Iustin Pop
12 49148d15 Iustin Pop
**hspace** {backend options...} [algorithm options...] [request options...]
13 375969eb Iustin Pop
[output options...] [-v... | -q]
14 49148d15 Iustin Pop
15 f624fa95 Iustin Pop
**hspace** \--version
16 49148d15 Iustin Pop
17 49148d15 Iustin Pop
Backend options:
18 49148d15 Iustin Pop
19 49148d15 Iustin Pop
{ **-m** *cluster* | **-L[** *path* **] [-X]** | **-t** *data-file* |
20 0547d608 René Nussbaumer
**\--simulate** *spec* | **-I** *path* }
21 49148d15 Iustin Pop
22 49148d15 Iustin Pop
23 49148d15 Iustin Pop
Algorithm options:
24 49148d15 Iustin Pop
25 f624fa95 Iustin Pop
**[ \--max-cpu *cpu-ratio* ]**
26 f624fa95 Iustin Pop
**[ \--min-disk *disk-ratio* ]**
27 49148d15 Iustin Pop
**[ -O *name...* ]**
28 49148d15 Iustin Pop
29 49148d15 Iustin Pop
30 49148d15 Iustin Pop
Request options:
31 49148d15 Iustin Pop
32 f624fa95 Iustin Pop
**[\--disk-template** *template* **]**
33 294bb337 Iustin Pop
34 f624fa95 Iustin Pop
**[\--standard-alloc** *disk,ram,cpu*  **]**
35 294bb337 Iustin Pop
36 f624fa95 Iustin Pop
**[\--tiered-alloc** *disk,ram,cpu* **]**
37 49148d15 Iustin Pop
38 375969eb Iustin Pop
Output options:
39 375969eb Iustin Pop
40 f624fa95 Iustin Pop
**[\--machine-readable**[=*CHOICE*] **]**
41 375969eb Iustin Pop
**[-p**[*fields*]**]**
42 375969eb Iustin Pop
43 49148d15 Iustin Pop
44 49148d15 Iustin Pop
DESCRIPTION
45 49148d15 Iustin Pop
-----------
46 49148d15 Iustin Pop
47 49148d15 Iustin Pop
hspace computes how many additional instances can be fit on a cluster,
48 49148d15 Iustin Pop
while maintaining N+1 status.
49 49148d15 Iustin Pop
50 49148d15 Iustin Pop
The program will try to place instances, all of the same size, on the
51 49148d15 Iustin Pop
cluster, until the point where we don't have any N+1 possible
52 49148d15 Iustin Pop
allocation. It uses the exact same allocation algorithm as the hail
53 9ef605a6 Iustin Pop
iallocator plugin in *allocate* mode.
54 49148d15 Iustin Pop
55 375969eb Iustin Pop
The output of the program is designed either for human consumption (the
56 375969eb Iustin Pop
default) or, when enabled with the ``--machine-readable`` option
57 375969eb Iustin Pop
(described further below), for machine consumption. In the latter case,
58 375969eb Iustin Pop
it is intended to interpreted as a shell fragment (or parsed as a
59 375969eb Iustin Pop
*key=value* file). Options which extend the output (e.g. -p, -v) will
60 375969eb Iustin Pop
output the additional information on stderr (such that the stdout is
61 375969eb Iustin Pop
still parseable).
62 49148d15 Iustin Pop
63 be468da0 Iustin Pop
By default, the instance specifications will be read from the cluster;
64 be468da0 Iustin Pop
the options ``--standard-alloc`` and ``--tiered-alloc`` can be used to
65 be468da0 Iustin Pop
override them.
66 be468da0 Iustin Pop
67 375969eb Iustin Pop
The following keys are available in the machine-readable output of the
68 375969eb Iustin Pop
script (all prefixed with *HTS_*):
69 49148d15 Iustin Pop
70 14e61dd1 Klaus Aehlig
SPEC_MEM, SPEC_DSK, SPEC_CPU, SPEC_RQN, SPEC_DISK_TEMPLATE, SPEC_SPN
71 49148d15 Iustin Pop
  These represent the specifications of the instance model used for
72 14e61dd1 Klaus Aehlig
  allocation (the memory, disk, cpu, requested nodes, disk template,
73 14e61dd1 Klaus Aehlig
  spindles).
74 49148d15 Iustin Pop
75 375969eb Iustin Pop
TSPEC_INI_MEM, TSPEC_INI_DSK, TSPEC_INI_CPU, ...
76 8dda364e Iustin Pop
  Only defined when the tiered mode allocation is enabled, these are
77 8dda364e Iustin Pop
  similar to the above specifications but show the initial starting spec
78 8dda364e Iustin Pop
  for tiered allocation.
79 8dda364e Iustin Pop
80 14e61dd1 Klaus Aehlig
CLUSTER_MEM, CLUSTER_DSK, CLUSTER_CPU, CLUSTER_NODES, CLUSTER_SPN
81 14e61dd1 Klaus Aehlig
  These represent the total memory, disk, CPU count, total nodes, and
82 14e61dd1 Klaus Aehlig
  total spindles in the cluster.
83 49148d15 Iustin Pop
84 49148d15 Iustin Pop
INI_SCORE, FIN_SCORE
85 49148d15 Iustin Pop
  These are the initial (current) and final cluster score (see the hbal
86 49148d15 Iustin Pop
  man page for details about the scoring algorithm).
87 49148d15 Iustin Pop
88 49148d15 Iustin Pop
INI_INST_CNT, FIN_INST_CNT
89 49148d15 Iustin Pop
  The initial and final instance count.
90 49148d15 Iustin Pop
91 49148d15 Iustin Pop
INI_MEM_FREE, FIN_MEM_FREE
92 49148d15 Iustin Pop
  The initial and final total free memory in the cluster (but this
93 49148d15 Iustin Pop
  doesn't necessarily mean available for use).
94 49148d15 Iustin Pop
95 49148d15 Iustin Pop
INI_MEM_AVAIL, FIN_MEM_AVAIL
96 49148d15 Iustin Pop
  The initial and final total available memory for allocation in the
97 49148d15 Iustin Pop
  cluster. If allocating redundant instances, new instances could
98 49148d15 Iustin Pop
  increase the reserved memory so it doesn't necessarily mean the
99 49148d15 Iustin Pop
  entirety of this memory can be used for new instance allocations.
100 49148d15 Iustin Pop
101 49148d15 Iustin Pop
INI_MEM_RESVD, FIN_MEM_RESVD
102 49148d15 Iustin Pop
  The initial and final reserved memory (for redundancy/N+1 purposes).
103 49148d15 Iustin Pop
104 49148d15 Iustin Pop
INI_MEM_INST, FIN_MEM_INST
105 49148d15 Iustin Pop
  The initial and final memory used for instances (actual runtime used
106 49148d15 Iustin Pop
  RAM).
107 49148d15 Iustin Pop
108 49148d15 Iustin Pop
INI_MEM_OVERHEAD, FIN_MEM_OVERHEAD
109 f624fa95 Iustin Pop
  The initial and final memory overhead, i.e. memory used for the node
110 50c1e351 Bernardo Dal Seno
  itself and unaccounted memory (e.g. due to hypervisor overhead).
111 49148d15 Iustin Pop
112 49148d15 Iustin Pop
INI_MEM_EFF, HTS_INI_MEM_EFF
113 49148d15 Iustin Pop
  The initial and final memory efficiency, represented as instance
114 49148d15 Iustin Pop
  memory divided by total memory.
115 49148d15 Iustin Pop
116 49148d15 Iustin Pop
INI_DSK_FREE, INI_DSK_AVAIL, INI_DSK_RESVD, INI_DSK_INST, INI_DSK_EFF
117 49148d15 Iustin Pop
  Initial disk stats, similar to the memory ones.
118 49148d15 Iustin Pop
119 49148d15 Iustin Pop
FIN_DSK_FREE, FIN_DSK_AVAIL, FIN_DSK_RESVD, FIN_DSK_INST, FIN_DSK_EFF
120 49148d15 Iustin Pop
  Final disk stats, similar to the memory ones.
121 14e61dd1 Klaus Aehlig
122 14e61dd1 Klaus Aehlig
INI_SPN_FREE, ..., FIN_SPN_FREE, ..
123 14e61dd1 Klaus Aehlig
  Initial and final spindles stats, similar to memory ones.
124 49148d15 Iustin Pop
125 49148d15 Iustin Pop
INI_CPU_INST, FIN_CPU_INST
126 49148d15 Iustin Pop
  Initial and final number of virtual CPUs used by instances.
127 49148d15 Iustin Pop
128 49148d15 Iustin Pop
INI_CPU_EFF, FIN_CPU_EFF
129 49148d15 Iustin Pop
  The initial and final CPU efficiency, represented as the count of
130 49148d15 Iustin Pop
  virtual instance CPUs divided by the total physical CPU count.
131 49148d15 Iustin Pop
132 49148d15 Iustin Pop
INI_MNODE_MEM_AVAIL, FIN_MNODE_MEM_AVAIL
133 49148d15 Iustin Pop
  The initial and final maximum per-node available memory. This is not
134 49148d15 Iustin Pop
  very useful as a metric but can give an impression of the status of
135 49148d15 Iustin Pop
  the nodes; as an example, this value restricts the maximum instance
136 49148d15 Iustin Pop
  size that can be still created on the cluster.
137 49148d15 Iustin Pop
138 49148d15 Iustin Pop
INI_MNODE_DSK_AVAIL, FIN_MNODE_DSK_AVAIL
139 49148d15 Iustin Pop
  Like the above but for disk.
140 49148d15 Iustin Pop
141 49148d15 Iustin Pop
TSPEC
142 be468da0 Iustin Pop
  This parameter holds the pairs of specifications and counts of
143 be468da0 Iustin Pop
  instances that can be created in the *tiered allocation* mode. The
144 be468da0 Iustin Pop
  value of the key is a space-separated list of values; each value is of
145 91fba1d1 Klaus Aehlig
  the form *memory,disk,vcpu,spindles=count* where the memory, disk and vcpu are
146 be468da0 Iustin Pop
  the values for the current spec, and count is how many instances of
147 be468da0 Iustin Pop
  this spec can be created. A complete value for this variable could be:
148 91fba1d1 Klaus Aehlig
  **4096,102400,2,1=225 2560,102400,2,1=20 512,102400,2,1=21**.
149 49148d15 Iustin Pop
150 49148d15 Iustin Pop
KM_USED_CPU, KM_USED_NPU, KM_USED_MEM, KM_USED_DSK
151 49148d15 Iustin Pop
  These represents the metrics of used resources at the start of the
152 49148d15 Iustin Pop
  computation (only for tiered allocation mode). The NPU value is
153 49148d15 Iustin Pop
  "normalized" CPU count, i.e. the number of virtual CPUs divided by
154 49148d15 Iustin Pop
  the maximum ratio of the virtual to physical CPUs.
155 49148d15 Iustin Pop
156 49148d15 Iustin Pop
KM_POOL_CPU, KM_POOL_NPU, KM_POOL_MEM, KM_POOL_DSK
157 49148d15 Iustin Pop
  These represents the total resources allocated during the tiered
158 49148d15 Iustin Pop
  allocation process. In effect, they represent how much is readily
159 49148d15 Iustin Pop
  available for allocation.
160 49148d15 Iustin Pop
161 49148d15 Iustin Pop
KM_UNAV_CPU, KM_POOL_NPU, KM_UNAV_MEM, KM_UNAV_DSK
162 49148d15 Iustin Pop
  These represents the resources left over (either free as in
163 49148d15 Iustin Pop
  unallocable or allocable on their own) after the tiered allocation
164 49148d15 Iustin Pop
  has been completed. They represent better the actual unallocable
165 49148d15 Iustin Pop
  resources, because some other resource has been exhausted. For
166 49148d15 Iustin Pop
  example, the cluster might still have 100GiB disk free, but with no
167 49148d15 Iustin Pop
  memory left for instances, we cannot allocate another instance, so
168 49148d15 Iustin Pop
  in effect the disk space is unallocable. Note that the CPUs here
169 f624fa95 Iustin Pop
  represent instance virtual CPUs, and in case the *\--max-cpu* option
170 49148d15 Iustin Pop
  hasn't been specified this will be -1.
171 49148d15 Iustin Pop
172 49148d15 Iustin Pop
ALLOC_USAGE
173 49148d15 Iustin Pop
  The current usage represented as initial number of instances divided
174 49148d15 Iustin Pop
  per final number of instances.
175 49148d15 Iustin Pop
176 49148d15 Iustin Pop
ALLOC_COUNT
177 49148d15 Iustin Pop
  The number of instances allocated (delta between FIN_INST_CNT and
178 49148d15 Iustin Pop
  INI_INST_CNT).
179 49148d15 Iustin Pop
180 49148d15 Iustin Pop
ALLOC_FAIL*_CNT
181 49148d15 Iustin Pop
  For the last attemp at allocations (which would have increased
182 49148d15 Iustin Pop
  FIN_INST_CNT with one, if it had succeeded), this is the count of
183 49148d15 Iustin Pop
  the failure reasons per failure type; currently defined are FAILMEM,
184 49148d15 Iustin Pop
  FAILDISK and FAILCPU which represent errors due to not enough
185 49148d15 Iustin Pop
  memory, disk and CPUs, and FAILN1 which represents a non N+1
186 49148d15 Iustin Pop
  compliant cluster on which we can't allocate instances at all.
187 49148d15 Iustin Pop
188 49148d15 Iustin Pop
ALLOC_FAIL_REASON
189 49148d15 Iustin Pop
  The reason for most of the failures, being one of the above FAIL*
190 49148d15 Iustin Pop
  strings.
191 49148d15 Iustin Pop
192 49148d15 Iustin Pop
OK
193 49148d15 Iustin Pop
  A marker representing the successful end of the computation, and
194 49148d15 Iustin Pop
  having value "1". If this key is not present in the output it means
195 49148d15 Iustin Pop
  that the computation failed and any values present should not be
196 49148d15 Iustin Pop
  relied upon.
197 49148d15 Iustin Pop
198 22ac4136 Michael Hanselmann
Many of the ``INI_``/``FIN_`` metrics will be also displayed with a
199 22ac4136 Michael Hanselmann
``TRL_`` prefix, and denote the cluster status at the end of the tiered
200 22ac4136 Michael Hanselmann
allocation run.
201 49148d15 Iustin Pop
202 375969eb Iustin Pop
The human output format should be self-explanatory, so it is not
203 375969eb Iustin Pop
described further.
204 375969eb Iustin Pop
205 49148d15 Iustin Pop
OPTIONS
206 49148d15 Iustin Pop
-------
207 49148d15 Iustin Pop
208 49148d15 Iustin Pop
The options that can be passed to the program are as follows:
209 49148d15 Iustin Pop
210 f624fa95 Iustin Pop
\--disk-template *template*
211 9fdd3d0f Iustin Pop
  Overrides the disk template for the instance read from the cluster;
212 9fdd3d0f Iustin Pop
  one of the Ganeti disk templates (e.g. plain, drbd, so on) should be
213 9fdd3d0f Iustin Pop
  passed in.
214 49148d15 Iustin Pop
215 f0753837 René Nussbaumer
\--spindle-use *spindles*
216 f0753837 René Nussbaumer
  Override the spindle use for the instance read from the cluster. The
217 f0753837 René Nussbaumer
  value can be 0 (for example for instances that use very low I/O), but not
218 f0753837 René Nussbaumer
  negative. For shared storage the value is ignored.
219 f0753837 René Nussbaumer
220 f624fa95 Iustin Pop
\--max-cpu=*cpu-ratio*
221 247f77b7 Iustin Pop
  The maximum virtual to physical cpu ratio, as a floating point number
222 247f77b7 Iustin Pop
  greater than or equal to one. For example, specifying *cpu-ratio* as
223 247f77b7 Iustin Pop
  **2.5** means that, for a 4-cpu machine, a maximum of 10 virtual cpus
224 247f77b7 Iustin Pop
  should be allowed to be in use for primary instances. A value of
225 247f77b7 Iustin Pop
  exactly one means there will be no over-subscription of CPU (except
226 247f77b7 Iustin Pop
  for the CPU time used by the node itself), and values below one do not
227 247f77b7 Iustin Pop
  make sense, as that means other resources (e.g. disk) won't be fully
228 247f77b7 Iustin Pop
  utilised due to CPU restrictions.
229 49148d15 Iustin Pop
230 f624fa95 Iustin Pop
\--min-disk=*disk-ratio*
231 49148d15 Iustin Pop
  The minimum amount of free disk space remaining, as a floating point
232 49148d15 Iustin Pop
  number. For example, specifying *disk-ratio* as **0.25** means that
233 49148d15 Iustin Pop
  at least one quarter of disk space should be left free on nodes.
234 49148d15 Iustin Pop
235 f624fa95 Iustin Pop
-l *rounds*, \--max-length=*rounds*
236 b8a2c0ab Iustin Pop
  Restrict the number of instance allocations to this length. This is
237 b8a2c0ab Iustin Pop
  not very useful in practice, but can be used for testing hspace
238 b8a2c0ab Iustin Pop
  itself, or to limit the runtime for very big clusters.
239 b8a2c0ab Iustin Pop
240 f624fa95 Iustin Pop
-p, \--print-nodes
241 d7731f51 Iustin Pop
  Prints the before and after node status, in a format designed to allow
242 d7731f51 Iustin Pop
  the user to understand the node's most important parameters. See the
243 354c4f62 Michael Hanselmann
  man page **htools**\(1) for more details about this option.
244 49148d15 Iustin Pop
245 49148d15 Iustin Pop
-O *name*
246 49148d15 Iustin Pop
  This option (which can be given multiple times) will mark nodes as
247 49148d15 Iustin Pop
  being *offline*. This means a couple of things:
248 49148d15 Iustin Pop
249 49148d15 Iustin Pop
  - instances won't be placed on these nodes, not even temporarily;
250 49148d15 Iustin Pop
    e.g. the *replace primary* move is not available if the secondary
251 49148d15 Iustin Pop
    node is offline, since this move requires a failover.
252 49148d15 Iustin Pop
  - these nodes will not be included in the score calculation (except
253 49148d15 Iustin Pop
    for the percentage of instances on offline nodes)
254 49148d15 Iustin Pop
255 49148d15 Iustin Pop
  Note that the algorithm will also mark as offline any nodes which
256 49148d15 Iustin Pop
  are reported by RAPI as such, or that have "?" in file-based input
257 49148d15 Iustin Pop
  in any numeric fields.
258 49148d15 Iustin Pop
259 f624fa95 Iustin Pop
-S *filename*, \--save-cluster=*filename*
260 49148d15 Iustin Pop
  If given, the state of the cluster at the end of the allocation is
261 49148d15 Iustin Pop
  saved to a file named *filename.alloc*, and if tiered allocation is
262 49148d15 Iustin Pop
  enabled, the state after tiered allocation will be saved to
263 49148d15 Iustin Pop
  *filename.tiered*. This allows re-feeding the cluster state to
264 49148d15 Iustin Pop
  either hspace itself (with different parameters) or for example
265 acd9fa11 Iustin Pop
  hbal, via the ``-t`` option.
266 acd9fa11 Iustin Pop
267 f624fa95 Iustin Pop
-t *datafile*, \--text-data=*datafile*
268 acd9fa11 Iustin Pop
  Backend specification: the name of the file holding node and instance
269 acd9fa11 Iustin Pop
  information (if not collecting via RAPI or LUXI). This or one of the
270 acd9fa11 Iustin Pop
  other backends must be selected. The option is described in the man
271 354c4f62 Michael Hanselmann
  page **htools**\(1).
272 49148d15 Iustin Pop
273 49148d15 Iustin Pop
-m *cluster*
274 acd9fa11 Iustin Pop
  Backend specification: collect data directly from the *cluster* given
275 acd9fa11 Iustin Pop
  as an argument via RAPI. The option is described in the man page
276 354c4f62 Michael Hanselmann
  **htools**\(1).
277 49148d15 Iustin Pop
278 49148d15 Iustin Pop
-L [*path*]
279 acd9fa11 Iustin Pop
  Backend specification: collect data directly from the master daemon,
280 acd9fa11 Iustin Pop
  which is to be contacted via LUXI (an internal Ganeti protocol). The
281 354c4f62 Michael Hanselmann
  option is described in the man page **htools**\(1).
282 49148d15 Iustin Pop
283 f624fa95 Iustin Pop
\--simulate *description*
284 acd9fa11 Iustin Pop
  Backend specification: similar to the **-t** option, this allows
285 acd9fa11 Iustin Pop
  overriding the cluster data with a simulated cluster. For details
286 354c4f62 Michael Hanselmann
  about the description, see the man page **htools**\(1).
287 49148d15 Iustin Pop
288 f624fa95 Iustin Pop
\--standard-alloc *disk,ram,cpu*
289 be468da0 Iustin Pop
  This option overrides the instance size read from the cluster for the
290 be468da0 Iustin Pop
  *standard* allocation mode, where we simply allocate instances of the
291 be468da0 Iustin Pop
  same, fixed size until the cluster runs out of space.
292 294bb337 Iustin Pop
293 f624fa95 Iustin Pop
  The specification given is similar to the *\--simulate* option and it
294 294bb337 Iustin Pop
  holds:
295 49148d15 Iustin Pop
296 247f77b7 Iustin Pop
  - the disk size of the instance (units can be used)
297 247f77b7 Iustin Pop
  - the memory size of the instance (units can be used)
298 49148d15 Iustin Pop
  - the vcpu count for the insance
299 49148d15 Iustin Pop
300 294bb337 Iustin Pop
  An example description would be *100G,4g,2* describing an instance
301 294bb337 Iustin Pop
  specification of 100GB of disk space, 4GiB of memory and 2 VCPUs.
302 294bb337 Iustin Pop
303 f624fa95 Iustin Pop
\--tiered-alloc *disk,ram,cpu*
304 be468da0 Iustin Pop
  This option overrides the instance size for the *tiered* allocation
305 be468da0 Iustin Pop
  mode. In this mode, the algorithm starts from the given specification
306 be468da0 Iustin Pop
  and allocates until there is no more space; then it decreases the
307 be468da0 Iustin Pop
  specification and tries the allocation again. The decrease is done on
308 be468da0 Iustin Pop
  the metric that last failed during allocation. The argument should
309 be468da0 Iustin Pop
  have the same format as for ``--standard-alloc``.
310 49148d15 Iustin Pop
311 49148d15 Iustin Pop
  Also note that the normal allocation and the tiered allocation are
312 49148d15 Iustin Pop
  independent, and both start from the initial cluster state; as such,
313 49148d15 Iustin Pop
  the instance count for these two modes are not related one to
314 49148d15 Iustin Pop
  another.
315 49148d15 Iustin Pop
316 f624fa95 Iustin Pop
\--machine-readable[=*choice*]
317 375969eb Iustin Pop
  By default, the output of the program is in "human-readable" format,
318 375969eb Iustin Pop
  i.e. text descriptions. By passing this flag you can either enable
319 375969eb Iustin Pop
  (``--machine-readable`` or ``--machine-readable=yes``) or explicitly
320 375969eb Iustin Pop
  disable (``--machine-readable=no``) the machine readable format
321 375969eb Iustin Pop
  described above.
322 375969eb Iustin Pop
323 f624fa95 Iustin Pop
-v, \--verbose
324 49148d15 Iustin Pop
  Increase the output verbosity. Each usage of this option will
325 49148d15 Iustin Pop
  increase the verbosity (currently more than 2 doesn't make sense)
326 49148d15 Iustin Pop
  from the default of one.
327 49148d15 Iustin Pop
328 f624fa95 Iustin Pop
-q, \--quiet
329 49148d15 Iustin Pop
  Decrease the output verbosity. Each usage of this option will
330 49148d15 Iustin Pop
  decrease the verbosity (less than zero doesn't make sense) from the
331 49148d15 Iustin Pop
  default of one.
332 49148d15 Iustin Pop
333 f624fa95 Iustin Pop
-V, \--version
334 49148d15 Iustin Pop
  Just show the program version and exit.
335 49148d15 Iustin Pop
336 247f77b7 Iustin Pop
UNITS
337 247f77b7 Iustin Pop
~~~~~
338 247f77b7 Iustin Pop
339 247f77b7 Iustin Pop
By default, all unit-accepting options use mebibytes. Using the
340 247f77b7 Iustin Pop
lower-case letters of *m*, *g* and *t* (or their longer equivalents of
341 247f77b7 Iustin Pop
*mib*, *gib*, *tib*, for which case doesn't matter) explicit binary
342 247f77b7 Iustin Pop
units can be selected. Units in the SI system can be selected using the
343 247f77b7 Iustin Pop
upper-case letters of *M*, *G* and *T* (or their longer equivalents of
344 247f77b7 Iustin Pop
*MB*, *GB*, *TB*, for which case doesn't matter).
345 247f77b7 Iustin Pop
346 247f77b7 Iustin Pop
More details about the difference between the SI and binary systems can
347 354c4f62 Michael Hanselmann
be read in the **units**\(7) man page.
348 247f77b7 Iustin Pop
349 49148d15 Iustin Pop
EXIT STATUS
350 49148d15 Iustin Pop
-----------
351 49148d15 Iustin Pop
352 49148d15 Iustin Pop
The exist status of the command will be zero, unless for some reason
353 49148d15 Iustin Pop
the algorithm fatally failed (e.g. wrong node or instance data).
354 49148d15 Iustin Pop
355 49148d15 Iustin Pop
BUGS
356 49148d15 Iustin Pop
----
357 49148d15 Iustin Pop
358 49148d15 Iustin Pop
The algorithm is highly dependent on the number of nodes; its runtime
359 49148d15 Iustin Pop
grows exponentially with this number, and as such is impractical for
360 49148d15 Iustin Pop
really big clusters.
361 49148d15 Iustin Pop
362 49148d15 Iustin Pop
The algorithm doesn't rebalance the cluster or try to get the optimal
363 49148d15 Iustin Pop
fit; it just allocates in the best place for the current step, without
364 49148d15 Iustin Pop
taking into consideration the impact on future placements.
365 9ff4f2c0 Michael Hanselmann
366 9ff4f2c0 Michael Hanselmann
.. vim: set textwidth=72 :
367 9ff4f2c0 Michael Hanselmann
.. Local Variables:
368 9ff4f2c0 Michael Hanselmann
.. mode: rst
369 9ff4f2c0 Michael Hanselmann
.. fill-column: 72
370 9ff4f2c0 Michael Hanselmann
.. End: