5 title: "cloud dispatcher"
9 Copyright (C) The Arvados Authors. All rights reserved.
11 SPDX-License-Identifier: CC-BY-SA-3.0
14 The cloud dispatcher provides several management/diagnostic APIs, intended to be used by a system administrator.
16 These APIs are not normally exposed to external clients. To use them, connect directly to the dispatcher's internal URL (see Services.DispatchCloud.InternalURLs in the cluster config file). All requests must include the cluster's management token (@ManagementToken@ in the cluster config file).
20 <notextile><pre><code>curl -H "Authorization: Bearer $management_token" http://localhost:9006/arvados/v1/dispatch/containers</code></pre></notextile>
22 These APIs are not available via @arv@ CLI tool.
24 Note: the term "instance" here refers to a virtual machine provided by a cloud computing service. The alternate terms "cloud VM", "compute node", and "worker node" are sometimes used as well in config files, documentation, and log messages.
28 @GET /arvados/v1/dispatch/containers@
30 Return a list of containers that are either ready to dispatch, or being started/monitored by the dispatcher.
32 Each entry in the returned list of @items@ includes:
33 * an @instance_type@ entry with the name and attributes of the instance type that will be used to schedule the container (chosen from the @InstanceTypes@ section of your cluster config file); and
34 * a @container@ entry with selected attributes of the container itself, including @uuid@, @priority@, @runtime_constraints@, and @state@. Other fields of the container records are not loaded by the dispatcher, and will have empty/zero values here (e.g., @{...,"created_at":"0001-01-01T00:00:00Z","command":[],...}@).
35 * a @scheduling_status@ field with a brief explanation of the container's status in the dispatch queue, or an empty string if scheduling is not applicable, e.g., the container has already started running.
43 "uuid": "zzzzz-dz642-xz68ptr62m49au7",
45 "priority": 562948375092493200,
51 "Name": "Standard_E2s_v3",
52 "ProviderType": "Standard_E2s_v3",
55 "Scratch": 32000000000,
56 "IncludedScratch": 32000000000,
61 "scheduling_status": "waiting for new instance to be ready"
67 h3. Get specified container
69 @GET /arvados/v1/dispatch/container?container_uuid={uuid}@
71 Return the same information as "list containers" above, but for a single specified container.
82 "scheduling_status": "waiting for new instance to be ready"
85 h3. Terminate a container
87 @POST /arvados/v1/dispatch/containers/kill?container_uuid={uuid}&reason={string}@
89 Make a single attempt to terminate the indicated container on the relevant instance. (The caller can implement a delay-and-retry loop if needed.)
91 A container terminated this way will end with state @Cancelled@ if its docker container had already started, or @Queued@ if it was terminated while setting up the runtime environment.
93 The provided @reason@ string will appear in the dispatcher's log, but not in the user-visible container log.
95 If the provided @container_uuid@ is not scheduled/running on an instance, the response status will be 404.
99 @GET /arvados/v1/dispatch/instances@
101 Return a list of cloud instances.
108 "instance": "/subscriptions/abcdefab-abcd-abcd-abcd-abcdefabcdef/resourceGroups/zzzzz/providers/Microsoft.Compute/virtualMachines/compute-abcdef0123456789abcdef0123456789-abcdefghijklmno",
109 "address": "10.23.45.67",
111 "arvados_instance_type": "Standard_DS1_v2",
112 "provider_instance_type": "Standard_DS1_v2",
113 "last_container_uuid": "zzzzz-dz642-vp7scm21telkadq",
114 "last_busy": "2020-01-13T15:20:21.775019617Z",
115 "worker_state": "running",
116 "idle_behavior": "run"
121 The @instance@ value is the instance's identifier, assigned by the cloud provider. It can be used with the instance APIs below.
123 The @worker_state@ value indicates the instance's capability to run containers.
124 * @unknown@: instance was not created by this dispatcher, and a boot probe has not yet succeeded (this state typically appears briefly after the dispatcher restarts).
125 * @booting@: cloud provider says the instance exists, but a boot probe has not yet succeeded.
126 * @idle@: instance is idle and ready to run a container.
127 * @running@: instance is running a container.
128 * @shutdown@: cloud provider has been instructed to terminate the instance.
130 The @idle_behavior@ value determines what the dispatcher will do with the instance when it is idle; see hold/drain/run APIs below.
134 @POST /arvados/v1/dispatch/instances/hold?instance_id={instance}@
136 Set the indicated instance's idle behavior to @hold@. The instance will not be shut down automatically. If a container is currently running, it will be allowed to continue, but no new containers will be scheduled.
138 h3. Drain an instance
140 @POST /arvados/v1/dispatch/instances/drain?instance_id={instance}@
142 Set the indicated instance's idle behavior to @drain@. If a container is currently running, it will be allowed to continue, but when the instance becomes idle, it will be shut down.
144 h3. Resume an instance
146 @POST /arvados/v1/dispatch/instances/run?instance_id={instance}@
148 Set the indicated instance's idle behavior to @run@ (the normal behavior). When it becomes idle, it will be eligible to run new containers. It will be shut down automatically when the configured idle threshold is reached.
150 h3. Shut down an instance
152 @POST /arvados/v1/dispatch/instances/kill?instance_id={instance}&reason={string}@
154 Terminate the indicated instance.
156 If a container is running on the instance, it will be killed too; no effort is made to wait for it to end gracefully.
158 The provided @reason@ string will appear in the dispatcher's log.