-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Preetha Appan
committed
May 9, 2018
1 parent
2d0e273
commit b5e18b6
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
layout: "docs" | ||
page_title: "Commands: job eval" | ||
sidebar_current: "docs-commands-job-eval" | ||
description: > | ||
The job eval command is used to force an evaluation of a job | ||
--- | ||
|
||
# Command: job eval | ||
|
||
The `job eval` command is used to force an evaluation of a job, given the job ID. | ||
|
||
## Usage | ||
|
||
``` | ||
nomad job eval [options] <jobID> | ||
``` | ||
|
||
The `job eval` command requires a single argument, specifying the job ID to evaluate. | ||
If there is an exact match based on the provided job ID, then | ||
the job will be evaluated, forcing a scheduler run. | ||
|
||
## General Options | ||
|
||
<%= partial "docs/commands/_general_options" %> | ||
|
||
## Eval Options | ||
|
||
* `-force-reschedule`: `force-reschedule` is used to force placement of any failed allocations. | ||
If this is set, failed allocations that are past their reschedule limit, as well as any that are | ||
scheduled to be replaced at a future time are placed immediately. This option only places failed | ||
allocations if the task group has rescheduling enabled. | ||
|
||
## Examples | ||
|
||
Evaluate the job with ID "job1": | ||
|
||
``` | ||
$ nomad job eval job1 | ||
Created eval ID: "6754c2e3-9abb-e7e9-dc92-76aab01751c8" | ||
``` | ||
|
||
Evaluate the job with ID "job1", and reschedule any eligible failed allocations: | ||
|
||
``` | ||
$ nomad job eval -force-reschedule job1 | ||
Created eval ID: "6754c2e3-9abb-e7e9-dc92-76aab01751c8" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters