Mesos Attributes & Resources
The Mesos system has two basic methods to describe the slaves that comprise a cluster. One of these is managed by the Mesos master, the other is simply passed onwards to the frameworks using the cluster.
Types
The types of values that are supported by Attributes and Resources in Mesos are scalar, ranges, sets and text.
The following are the definitions of these types:
scalar : floatValue
floatValue : ( intValue ( "." intValue )? ) | ...
intValue : [0-9]+
range : "[" rangeValue ( "," rangeValue )* "]"
rangeValue : scalar "-" scalar
set : "{" text ( "," text )* "}"
text : [a-zA-Z0-9_/.-]
Attributes
Attributes are key value pairs (where value is optional) that Mesos passes along when it sends offers to frameworks. An attribute value supports 3 different types: scalar, range or text.
attributes : attribute ( ";" attribute )*
attribute : text ":" ( scalar | range | text )
Resources
The Mesos system can manage 3 different types of resources: scalars, ranges, and sets. These are used to represent the different resources that a Mesos slave has to offer. For example, a scalar resource type could be used to represent the amount of memory on a slave. Each resource is identified by a key string.
resources : resource ( ";" resource )*
resource : key ":" ( scalar | range | set )
key : text ( "(" resourceRole ")" )?
resourceRole : text | "*"
Predefined Uses & Conventions
The Mesos master has a few resources that it pre-defines in how it handles them. At the current time, this list consist of:
cpusmemdiskports
In particular, a slave without cpus and mem resources will never have its resources advertised to any frameworks. Also, the Master's user interface interprets the scalars in mem and disk in terms of MB. IE: the value 15000 is displayed as 14.65GB.
Examples
Here are some examples for configuring the Mesos slaves.
--resources='cpus:24;mem:24576;disk:409600;ports:[21000-24000];bugs:{a,b,c}'
--attributes='rack:abc;zone:west;os:centos5;level:10;keys:[1000-1500]'
In this case, we have three different types of resources, scalars, a range, and a set. They are called cpus, mem, disk, and the range type is ports.
- scalar called
cpus, with the value24 - scalar called
mem, with the value24576 - scalar called
disk, with the value409600 - range called
ports, with values21000through24000(inclusive) - set called
bugs, with the valuesa,bandc
In the case of attributes, we end up with three attributes:
rackwith text valueabczonewith text valuewestoswith text valuecentos5levelwith scalar value 10keyswith range value1000through1500(inclusive)