Nomad is a single binary that schedules applications and services on Linux, Windows, and Mac. It is an open source scheduler that uses a declarative job file for scheduling virtualized, containerized, and standalone applications.
Users compose and submit high-level job files. Nomad handles the scheduling and upgrading of the applications over time.
This flexibilty makes it easy to deploy one container, dozens of containers, or even millions.
With built-in dry-run execution, Nomad shows what scheduling decisions it will take before it takes them. Operators can approve or deny these changes to create a safe and reproducible workflow.
Nomad runs applications and ensures they keep running in failure scenarios. In addition to long-running services, Nomad can schedule batch jobs, distributed cron jobs, and parameterized jobs.
Stream logs, send signals, and interact with the file system of scheduled applications. These operator-friendly commands bring the familiar debugging tools to a scheduled world.
As more organizations adopt cloud technologies, the desire to run in multiple datacenters and multiple regions becomes critical. Nomad can span public and private clouds and treat all your infrastructure as a pool of resources.
Nomad bridges the gap between the public and private cloud, creating a unified interface for developers to run any application on any infrastructure. Easily run services across your internal private cloud and external public cloud transparently to application developers.
As more organizations adopt cloud technologies, the desire to run applications simultaneously across multiple clouds increases. Nomad combines the power of all cloud providers into a single, unified interface for deploying applications and running services.
Nomad simplifies operations by supporting several deployment strategies to safely upgrade jobs, automatically handling machine failures, and providing a single workflow to deploy applications.
In order to update an application while reducing downtime, Nomad provides a built-in mechanism for rolling upgrades. Operators specify the rate at which they would like to upgrade their service in the declarative job file, plan the changes, and submit the new job. Nomad then updates the service to the newest version using task health and Consul health check information to ensure replacement allocations are healthy. With full control over the update strategy, rolling upgrades make application deployments simple and safe.
Nomad supports native blue/green and canary deployments through the declarative job file syntax. Instead of doing a rolling upgrade of the existing allocations, the new version of the group is deployed along side the existing set. While this duplicates the resources required during the upgrade process, it allows very safe deployments as the original version of the group is untouched till the operator promotes the new version.
Because it knows the state of all nodes and applications, if a node becomes unhealthy, Nomad will automatically reschedule the applications that were previously running on the unhealthy host onto a new, healthy host if capacity exists. As new clients are added to the cluster, they can share the responsibility of running applications and services.
In addition to supporting Linux, Windows, and Mac, Nomad has extensible support for containerized, virtualized, and standalone applications. Easily start Docker containers, VMs, or application runtimes like Java.
By supporting a wide range of technologies such as Docker, rkt, and LXC, Nomad does not force you into a single technology. Easily use multiple container or virtualization runtimes simultaneously. Applications with their own runtime such as Java or Go can be scheduled directly without the overhead of a container.
The Nomad client runs on Linux, Windows, and Mac OS. This diverse operating system support enables using the same application scheduler for all your scheduling and runtime needs.
Nomad uses bin packing to optimize application placement onto servers to maximize resource utilization, increase density, and help reduce costs.
Nomad places applications and services based on a bin packing algorithm, which is used to optimize the resource utilization and density of applications. Nomad automatically augments the bin-packing algorithm with anti-affinity rules to avoid colocating instances of the same service to reduce the probability of correlated failures.
By maximizing resource utilization, Nomad can help remove unused or under-utilized machines in the cluster, reducing overall costs. Additionally, Nomad enables organizations to utilize larger, more cost-effective compute devices which can be less expensive at scale.
Easily create, validate, submit, and check the status of jobs using the Nomad CLI.
Perform a dry-run to check application placement, scheduling decisions, and visualize failures before they happen.
Stream application logs directly in the terminal to help analyze and debug applications.
The introduction contains a walkthrough guide, glossary, and a range of examples for learning and experimenting with Nomad.