The following diagram shows the simplest architecture representation of Mesos. The key components of Mesos include a Mesos Master, a set of slave nodes, a ZooKeeper service, and a Mesos framework. The Mesos framework is further subdivided into two components: a Scheduler and an Executor.
The boxes in the preceding diagram are explained as follows:
- Master: The Mesos Master is responsible for managing all Mesos slaves. It gets information on the resource availability from all slave nodes and takes responsibility of filling the resources appropriately, based on certain resource policies and constraints. The Mesos Master preempts ...