Concepts

Understanding DC/OS concepts and terms

Mesosphere® DC/OS™ is made up of many open source components, several of which existed before DC/OS. The terms used in this document may be similar to pre-existing terms that you are familiar with, however, they may be used in a different way in DC/OS.

DC/OS

DC/OS is a distributed operating system for the datacenter.

Unlike traditional distributed operating systems, DC/OS is also a container platform that manages containerized tasks based on native executables or container images, like Docker® images. Also unlike traditional operating systems, DC/OS runs on a cluster of nodes, instead of a single machine. Each DC/OS node also has a host operating system that manages the underlying machine.

DC/OS is made up of many components, most notably a distributed systems kernel (Apache® Mesos®) and a container orchestration engine (Marathon™).

While DC/OS itself is open source, premium distributions like Mesosphere DC/OS Enterprise may include additional closed-source components and features such as multi-tenancy, fine-grained permissions, secrets management, and end-to-end encryption.

DC/OS GUI

The DC/OS graphical user interface (GUI) is an interface for remotely controlling and managing a DC/OS cluster from a web browser. The GUI is also sometimes called the DC/OS UI or DC/OS web interface.

DC/OS CLI

The DC/OS command line interface (CLI) is an interface for remotely controlling and managing a DC/OS cluster from a terminal.

Cluster

A DC/OS cluster is a set of networked DC/OS nodes with a quorum of master nodes and any number of public and/or private agent nodes.

Network

DC/OS has two types of networks: infrastructure networks and virtual networks.

Infrastructure network

An infrastructure network is a physical or virtual network provided by the infrastructure on which DC/OS runs. DC/OS does not manage or control this networking layer, but requires it to exist in order for DC/OS nodes to communicate.

Virtual network

A DC/OS virtual network is specifically a virtual network internal to the cluster, that connects DC/OS components and containerized tasks running on DC/OS.

  • The virtual network provided by DC/OS is VXLAN managed by the Virtual Network Service (Navstar).
  • Virtual networks must be configured by an administrator before being used by tasks.
  • Tasks on DC/OS may opt-in to being placed on a specific virtual network and given a container-specific IP.
  • Virtual networks allow logical subdivision of the tasks running on DC/OS.
  • Each task on a virtual network may be configured with optional address groups that virtually isolate communication to tasks on the same network and address group.

Nodes

A DC/OS node is a virtual or physical machine on which a Mesos agent and/or Mesos master process runs. DC/OS nodes are networked together to form a DC/OS cluster.

Master nodes

A DC/OS master node is a virtual or physical machine that runs a collection of DC/OS components that work together to manage the rest of the cluster.

  • Each master node contains multiple DC/OS components, including most notably a Mesos master process.
  • Master nodes work in a quorum to provide consistency of cluster coordination. To avoid split brain cluster partitioning, clusters should always have an odd number of master nodes. For example, having three master nodes allows one to be down; having five master nodes allows two to be down, allowing for failure during a rolling update. Additional master nodes can be added for additional risk tolerance.
  • A cluster with only one master node is usable for development, but is not highly available and may not be able to recover from failure.

Agent nodes

A DC/OS agent node is a virtual or physical machine on which Mesos tasks are run.

  • Each agent node contains multiple DC/OS components, including most notably a Mesos agent process.
  • Agent nodes can be private or public, depending on agent and network configuration.

For more information, see Network Security and Adding Agent Nodes.

Private agent nodes

A private agent node is an agent node that is on a network that does not allow* access from outside of the cluster via the cluster’s infrastructure networking.

  • The Mesos agent on each private agent node is, by default, configured with none of its resources allocated to any specific Mesos roles (*).
  • Most service packages install by default on private agent nodes.
  • Clusters are generally comprised of mostly private agent nodes.

Public agent nodes

A public agent node is an agent node that is on a network that allows access from outside of the cluster via the cluster’s infrastructure networking.

  • The Mesos agent on each public agent node is configured with the public_ip:true agent attribute and all of its resources allocated to the slave_public role.
  • Public agent nodes are used primarily for externally facing reverse proxy load balancers, like Marathon-LB or Edge-LB.
  • Clusters generally have only a few public agent nodes, because a single load balancer can handle proxying multiple services.

For more information, see Converting Agent Node Types.

Host operating system

A host operating system is the operating system that runs on each DC/OS node underneath the DC/OS components, manages the local hardware and software resources, and provides common services for running other programs and services.

While the host OS manages local tasks and machine resources, DC/OS manages cluster tasks and resources so that you do not need to interact with the host operating systems on the nodes.

Bootstrap machine

A bootstrap machine is the machine on which the DC/OS installer artifacts are configured, built, and distributed.

  • The bootstrap machine is not technically considered part of the cluster since it does not have DC/OS installed on it. For most installation methods, the bootstrap node must be accessible to and from the machines in the cluster via infrastructure networking.
  • The bootstrap machine is sometimes used as a jumpbox to control SSH access into other nodes in the cluster for added security and logging.
  • One method of allowing master nodes to change IPs involves running ZooKeeper with Exhibitor on the bootstrap machine. Other alternatives include using Amazon S3®, DNS, or static IPs, with various tradeoffs. For more information, see the exhibitor storage backend parameter description.
  • If a bootstrap machine is not required for managing master node IP changes or as an SSH jumpbox, it can be shut down after bootstrapping and spun up on demand to add new nodes to the cluster.

For more information, see the system requirements.

Services

A Mesosphere DC/OS Service is a set of one or more service instances that can be started and stopped as a group, and restarted automatically if they exit before being stopped.

  • Service is currently a DC/OS GUI abstraction that translates to Marathon apps and pods in the CLI and API. This distinction will change over time as the name “service” is pushed upstream into component APIs.
  • Sometimes “service” may also refer to a systemd service on the host operating system. These are generally considered components and do not actually run on Marathon or Mesos.
  • A service may be either a system service or a user service. This distinction is new and still evolving as namespacing is transformed into a system-wide first class pattern.

Marathon service

A Marathon service consists of zero or more containerized service instances. Each service instance consists of one or more containerized Apache Mesos tasks.

  • Marathon apps and pods are both considered services.
    • Marathon app instances map one-to-one with tasks.
    • Marathon pod instances map one-to-many with tasks.
  • Service instances are restarted as a new Mesos Task when they exit prematurely.
  • Service instances may be re-scheduled onto another agent node if they exit prematurely and the agent is down or does not have enough resources any more.
  • Services can be installed directly via the DC/OS API (Marathon) or indirectly via the DC/OS Package Manager (Cosmos) from a package repository like Mesosphere Catalog. The DC/OS GUI and DC/OS CLI may be used to interact with the DC/OS Package Manager (Cosmos) more easily.
  • A Marathon service may be a DC/OS scheduler, but not all services are schedulers.
  • A Marathon service is an abstraction around Marathon service instances which are an abstraction around Mesos tasks. Other schedulers such as DC/OS Jobs (Metronome) or Jenkins have their own names for abstractions around Mesos tasks.

Examples: Cassandra® (scheduler), Marathon-on-Marathon, Kafka® (scheduler), Nginx™, Tweeter.

Operating system systemd service

A systemd service is a service that consists of a single, optionally containerized, machine operating system process, running on the master or agent nodes, managed by systemd, owned by DC/OS itself.

  • All systemd services are currently either host OS service, DC/OS dependencies, DC/OS components, or services manually managed by the system administrator.

Examples: Most DC/OS components, (system) Marathon.

Admin and DC/OS system services

A system service is a service that implements or enhances the functionality of DC/OS itself, run as either a Marathon service or a systemd service, owned by the system (admin) user or DC/OS itself.

  • A system service may require special permissions to interact with other system services.
  • Permission to operate as a system service on a DC/OS Enterprise cluster requires specific fine-grained permissions, while on open DC/OS all logged in users have the same administrative permissions.

Examples: All DC/OS components.

User services

A user service is a Marathon service that is not a system service, owned by a user of the system.

  • This distinction is new and still evolving as namespacing is transformed into a system-wide first class pattern and mapped to fine-grained user and user group permissions.

Examples: Jenkins®, Cassandra, Kafka, Tweeter.

Service groups

A DC/OS service group is a hierarchical (path-like) set of DC/OS services for namespacing and organization.

  • Service groups are currently only available for Marathon services, not systemd services.
  • This distinction may change as namespacing is transformed into a system-wide first class pattern.

Jobs

A DC/OS job is a set of similar short-lived job instances, running as Mesos tasks, managed by the DC/OS Jobs (Metronome) component. A job can be created to run only once, or may run regularly on a schedule.

DC/OS scheduler

A DC/OS scheduler is a Mesos scheduler that runs as a systemd service on master nodes or Mesos task on agent nodes.

The key differences between a DC/OS scheduler and Mesos scheduler are where it runs and how it is installed.

  • Some schedulers come pre-installed as DC/OS components (for exmaple, Marathon, DC/OS Jobs (Metronome)).
  • Some schedulers can be installed by users as user services (for example Kafka and Cassandra).
  • Some schedulers run as multiple service instances to provide high availability (such as Marathon).

In certain security modes within DC/OS Enterprise, a DC/OS scheduler must authenticate and be authorized using a service account to register with Mesos as a framework.

DC/OS scheduler service

A DC/OS scheduler service is a long-running DC/OS scheduler that runs as a DC/OS service (Marathon or systemd). Since DC/OS schedulers can also be run as short-lived tasks, not all schedulers are services.

DC/OS service component

A DC/OS component is a DC/OS system service that is distributed with DC/OS.

  • Components may be systemd services or Marathon services.
  • Components may be deployed in a high availability configuration.

Most components run on the master nodes, but some (like mesos-agent) run on the agent nodes.

Examples: Mesos, Marathon, Mesos-DNS, Bouncer, Admin Router, DC/OS Package Manager (Cosmos), etc.

Packages

A DC/OS package is a bundle of metadata that describes how to configure, install, and uninstall a DC/OS service using Marathon.

Package manager

The [DC/OS Package Manager (Cosmos)(https://github.com/dcos/cosmos)) is a component that manages installing and uninstalling packages on a DC/OS cluster.

  • The DC/OS GUI and DC/OS CLI act as clients to interact with the DC/OS Package Manager.
  • The DC/OS Package Manager API allows programmatic interaction.

Package registry

A DC/OS package registry is a repository of DC/OS packages. The DC/OS Package Manager may be configured to install packages from one or more package registries.

Mesosphere Catalog

The Mesosphere Catalog is a public package registry, managed by Mesosphere.

For more information, see the Catalog repository on GitHub.

Container registry

A container registry is a repository of pre-built container images. The Universal Container Runtime and Docker Engine can both run Docker images from public or private Docker container registries.

Cloud template

A cloud template is an infrastructure-specific method of declaratively describing a DC/OS cluster.

For more information about deploying using a cloud template, see Mesosphere installation methods.

Mesos concepts

The following terms are contextually correct when discussing Apache Mesos, but may be hidden by other abstraction within DC/OS.

Apache Mesos

Apache Mesos is a distributed systems kernel that manages cluster resources and tasks. Mesos is one of the core components of DC/OS that predates DC/OS itself, bringing maturity and stability to the platform.

For more information, see the Mesos website.

Mesos master

A Mesos master is a process that runs on master nodes to coordinate cluster resource management and facilitate orchestration of tasks.

  • The Mesos masters form a quorum and elect a leader.
  • The lead Mesos master collects resources reported by Mesos agents and makes resource offers to Mesos schedulers. Schedulers then may accept resource offers and place tasks on their corresponding nodes.

Mesos agent

A Mesos agent is a process that runs on agent nodes to manage the executors, tasks, and resources of that node.

  • The Mesos agent registers some or all of the node’s resources, which allows the lead Mesos master to offer those resources to schedulers, which decide on which node to run tasks.
  • The Mesos agent reports task status updates to the lead Mesos master, which in turn reports them to the appropriate scheduler.

Mesos task

A Mesos task is an abstract unit of work, lifecycle managed by a Mesos executor, that runs on a DC/OS agent node. Tasks are often processes or threads, but could just be inline code or items in a single-threaded queue, depending on how their executor is designed. The Mesos built-in command executor runs each task as a process that can be containerized by one of several Mesos containerizers.

Mesos executor

A Mesos executor is a method by which Mesos agents launch tasks. Mesos tasks are defined by their scheduler to be run by a specific executor (or the default executor). Each executor runs in its own container.

For more information about framework schedulers and executors, see the Application Framework development guide.

Mesos scheduler

A Mesos scheduler is a program that defines new Mesos tasks and assigns resources to them (placing them on specific nodes). A scheduler receives resource offers describing CPU, RAM, etc., and allocates them for discrete tasks that can be launched by Mesos agents. A scheduler must register with Mesos as a framework.

Examples: Kafka, Marathon, Cassandra.

Mesos framework

A Mesos framework consists of a scheduler, tasks, and optionally custom executors. The terms “framework” and “scheduler” are sometimes used interchangeably. We prefer “scheduler” within the context of DC/OS.

For more information about framework schedulers and executors, see the Application Framework development guide.

Mesos role

A Mesos role is a group of Mesos frameworks that share reserved resources, persistent volumes, and quota. These frameworks are also grouped together in Mesos’ hierarchical Dominant Resource Fairness (DRF) share calculations. Roles are often confused as groups of resources, because of the way they can be statically configured on the agents. The assignment is actually the inverse: resources are assigned to roles. Role resource allocation can be configured statically on the Mesos agent or changed at runtime using the Mesos API.

Mesos resource offer

A Mesos resource offer provides a set of unallocated resources (such as CPU, disk, memory) from an agent to a scheduler so that the scheduler may allocate those resources to one or more tasks. Resource offers are constructed by the leading Mesos master, but the resources themselves are reported by the individual agents.

Mesos containerizer

A containerizer provides a containerization and resource isolation abstraction around a specific container runtime. The supported runtimes are

  • Universal Container Runtime
  • Docker Engine

Universal Container Runtime

The Universal Container Runtime launches Mesos containers from binary executables and Docker images. Mesos containers managed by the Universal Container Runtime do not use Docker Engine, even if launched from a Docker image.

Docker Engine

The Docker Engine launches Docker containers from Docker images.

Exhibitor and ZooKeeper

Mesos depends on ZooKeeper, a high-performance coordination service to manage the cluster state. Exhibitor automatically configures and manages ZooKeeper on the master nodes.

Mesos-DNS

Mesos-DNS is a DC/OS component that provides service discovery within the cluster. Mesos-DNS allows applications and services that are running on Mesos to find each other by using the domain name system (DNS), similar to how services discover each other throughout the Internet.

For more information, see the Mesos-DNS documentation.

Marathon concepts

The following terms are contextually correct when talking about Marathon, but may be hidden by other abstractions within DC/OS.

Marathon

Marathon is a container orchestration engine for Mesos and DC/OS. Marathon is one of the core components of DC/OS that predates DC/OS itself, bringing maturity and stability to the platform.

For more information, see the Marathon website.

Marathon application

A Marathon application is a long-running service that may have one or more instances that map one to one with Mesos tasks. The user creates an application by providing Marathon with an application definition (JSON). Marathon then schedules one or more application instances as Mesos tasks, depending on how many the definition specified. Applications currently support the use of either

Marathon pod

A Marathon pod is a long-running service that may have one or more instances that map one to many with colocated Mesos tasks. You create a pod by providing Marathon with a pod definition in a JSON file format. Marathon then schedules one or more pod instances as Mesos tasks, depending on how many the definition specified.

  • Pod instances may include one or more tasks that share certain resources (e.g. IPs, ports, volumes).
  • Pods require the use of the Mesos Universal Container Runtime.

Marathon group

A Marathon group is a set of services (applications and/or pods) within a hierarchical directory path structure for namespacing and organization.