From 592863d5122d581c6b39b0e36b40bcbc1af42498 Mon Sep 17 00:00:00 2001 From: Charlie O'Keefe Date: Sun, 11 Oct 2015 12:07:08 -0600 Subject: [PATCH] schedule -> scheduler --- website/source/docs/internals/scheduling.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/internals/scheduling.html.md b/website/source/docs/internals/scheduling.html.md index e871e5181..354e2a8f0 100644 --- a/website/source/docs/internals/scheduling.html.md +++ b/website/source/docs/internals/scheduling.html.md @@ -53,7 +53,7 @@ and ensure at least once delivery. Nomad servers run scheduling workers, defaulting to one per CPU core, which are used to process evaluations. The workers dequeue evaluations from the broker, and then invoke -the appropriate schedule as specified by the job. Nomad ships with a `service` scheduler +the appropriate scheduler as specified by the job. Nomad ships with a `service` scheduler that optimizes for long-lived services, a `batch` scheduler that is used for fast placement of batch jobs, and a `core` scheduler which is used for internal maintenance. Nomad can be extended to support custom schedulers as well.