---
layout: default
navsection: api
navmenu: API Methods
title: "jobs"
...
See "REST methods for working with Arvados resources":{{site.baseurl}}/api/methods.html
API endpoint base: @https://{{ site.arvados_api_host }}/arvados/v1/jobs@
Required arguments are displayed in %{background:#ccffcc}green%.
h2. cancel
Cancel a job that is queued or running.
Arguments:
table(table table-bordered table-condensed).
|_. Argument |_. Type |_. Description |_. Location |_. Example |
{background:#ccffcc}.|uuid|string||path||
h2(#create). create
Create a new Job.
Arguments:
table(table table-bordered table-condensed).
|_. Argument |_. Type |_. Description |_. Location |_. Example |
{background:#ccffcc}.|job|object|See "Job resource":{{site.baseurl}}/api/schema/Job.html|request body||
|minimum_script_version |string |Git branch, tag, or commit hash specifying the minimum acceptable script version (earliest ancestor) to consider when deciding whether to re-use a past job.[1]|query|@"c3e86c9"@|
|exclude_script_versions|array of strings|Git commit branches, tags, or hashes to exclude when deciding whether to re-use a past job.|query|@["8f03c71","8f03c71"]@
@["badtag1","badtag2"]@|
|filters|array|Conditions to find Jobs to reuse.|query||
|find_or_create |boolean |Before creating, look for an existing job that has identical script, script_version, and script_parameters to those in the present job, has nondeterministic=false, and did not fail (it could be queued, running, or completed). If such a job exists, respond with the existing job instead of submitting a new one.|query|@false@|
When a job is submitted to the queue using the **create** method, the @script_version@ attribute is updated to a full 40-character Git commit hash based on the current content of the specified repository. If @script_version@ cannot be resolved, the job submission is rejected.
fn1. See the "note about specifying Git commits on the Job resource page":{{site.baseurl}}/api/schema/Job.html#script_version for more detail.
h3. Specialized filters
Special filter operations are available for specific Job columns.
* @script_version@ @in git@ @REFSPEC@, @arvados_sdk_version@ @in git@ @REFSPEC@
Resolve @REFSPEC@ to a list of Git commits, and match jobs with a @script_version@ or @arvados_sdk_version@ in that list. When creating a job and filtering @script_version@, the search will find commits between @REFSPEC@ and the submitted job's @script_version@; all other searches will find commits between @REFSPEC@ and HEAD. This list may include parallel branches if there is more than one path between @REFSPEC@ and the end commit in the graph. Use @not in@ or @not in git@ filters (below) to blacklist specific commits.
* @script_version@ @not in git@ @REFSPEC@, @arvados_sdk_version@ @not in git@ @REFSPEC@
Resolve @REFSPEC@ to a list of Git commits, and match jobs with a @script_version@ or @arvados_sdk_version@ not in that list.
* @docker_image_locator@ @in docker@ @SEARCH@
@SEARCH@ can be a Docker image hash, a repository name, or a repository name and tag separated by a colon (@:@). The server will find collections that contain a Docker image that match that search criteria, then match jobs with a @docker_image_locator@ in that list.
* @docker_image_locator@ @not in docker@ @SEARCH@
Negate the @in docker@ filter.
h3. Reusing jobs
Because Arvados records the exact version of the script, input parameters, and runtime environment that was used to run the job, if the script is deterministic (meaning that the same code version is guaranteed to produce the same outputs from the same inputs) then it is possible to re-use the results of past jobs, and avoid re-running the computation to save time. Arvados uses the following algorithm to determine if a past job can be re-used:
notextile.
{ "job": { "script": "hash.py", "repository": "you", "script_version": "master", "script_parameters": { "input": "c1bad4b39ca5a924e481008009d94e32+210" } }, "find_or_create": true }
{ "job": { "script": "hash.py", "repository": "you", "script_version": "d00220fb38d4b85ca8fc28a8151702a2b9d1dec5", "script_parameters": { "input": "c1bad4b39ca5a924e481008009d94e32+210" } }, "find_or_create": true }
{ "job": { "script": "hash.py", "repository": "you", "script_version": "master", "script_parameters": { "input": "c1bad4b39ca5a924e481008009d94e32+210" } }, "minimum_script_version": "earlier_version_tag", "exclude_script_versions": ["blacklisted_version_tag"], "find_or_create": true }
{ "job": { "script": "hash.py", "repository": "you", "script_version": "master", "script_parameters": { "input": "c1bad4b39ca5a924e481008009d94e32+210" } }, "filters": [["script", "=", "hash.py"], ["repository", "=", "you"], ["script_version", "in git", "earlier_version_tag"], ["script_version", "not in git", "blacklisted_version_tag"]], "find_or_create": true }
{ "job": { "script": "monte-carlo.py", "repository": "you", "script_version": "master", "nondeterministic": true, "script_parameters": { "input": "c1bad4b39ca5a924e481008009d94e32+210" } } }