Project

General

Profile

Dispatching containers to cloud VMs » History » Version 41

Tom Clegg, 12/20/2018 09:10 PM

1 1 Tom Clegg
h1. Dispatching containers to cloud VMs
2
3 6 Tom Clegg
(Draft)
4 1 Tom Clegg
5 11 Tom Clegg
{{>toc}}
6
7 7 Tom Clegg
h2. Component name / purpose
8 1 Tom Clegg
9 7 Tom Clegg
crunch-dispatch-cloud runs Arvados user containers on generic public cloud infrastructure by automatically creating and destroying VMs of various sizes according to demand, preparing the VMs' runtime environments, and running containers on them.
10 1 Tom Clegg
11 12 Tom Clegg
h2. Deployment
12
13 32 Tom Clegg
*Where to install:* The crunch-dispatch-cloud process can run anywhere, as long as it has network access to the Arvados controller, the cloud provider's API, and the worker VMs. Each Arvados cluster should run only one crunch-dispatch-cloud process.
14
* Future versions will support multiple dispatchers.
15 21 Tom Clegg
16 1 Tom Clegg
*Dispatcher's SSH key:* The operator must generate an SSH key pair for the dispatcher to use when connecting to cloud VMs. The private key is stored (without a passphrase) in the cluster configuration file. It does not need to be saved in @~/.ssh/@.
17 21 Tom Clegg
18 33 Tom Clegg
*Cloud VM image:* The operator must provide a VM image with an SSH server on a port reachable by the dispatcher (default 22, configurable per cluster). The dispatcher's SSH public key must be listed in @/root/.ssh/authorized_keys@. The image should also include suitable versions of docker and crunch-run. The @/var/lock@ directory must be available for lockfiles with names matching "@crunch-run-*.*@".
19 32 Tom Clegg
* It is possible to install docker and crunch-run using a custom boot probe command, but pre-installing is more efficient.
20
* Future versions will automatically sync the crunch-run binary from the dispatcher host to each worker node.
21 12 Tom Clegg
22 31 Tom Clegg
*Cloud provider account:* The dispatcher uses cloud provider credentials to create and delete VMs and other cloud resources. An Arvados user can create an arbitrary number of long-running containers, and the dispatcher will try to run all of them. Currently the dispatcher does not enforce any resource limits of its own, so the operator must ensure the cloud provider itself is enforcing a suitable quota.
23 23 Tom Clegg
24 24 Tom Clegg
*Migrating from nodemanager/SLURM:* When VM images, SSH keys, and configuration files are ready, disable nodemanager and crunch-dispatch-slurm. Install crunch-dispatch-cloud deb/rpm package. Confirm success with @systemctl status crunch-dispatch-cloud@ and @journalctl -fu crunch-dispatch-cloud@.
25
26 9 Tom Clegg
h2. Overview of operation
27 1 Tom Clegg
28 9 Tom Clegg
The dispatcher waits for containers to appear in the queue, and runs them on appropriately sized cloud VMs. When there are no idle cloud VMs with the desired size, the dispatcher brings up more VMs using the cloud provider's API. The dispatcher also shuts down idle VMs that exceed the configured idle timer -- and sooner if the provider starts refusing to create new VMs.
29 1 Tom Clegg
30 6 Tom Clegg
h2. Interaction with other components
31 1 Tom Clegg
32 9 Tom Clegg
Controller (backed by RailsAPI and PostgreSQL) supplies the container queue: which containers the system should be trying to execute (or cancel) at any given time.
33 1 Tom Clegg
34 6 Tom Clegg
The cloud provider's API supplies a list of VMs that exist (or are being created) at a given time and their network addresses, accepts orders to create new VMs, updates instance tags, and (optionally, depending on the driver) obtains the VMs' SSH server public keys.
35 1 Tom Clegg
36 6 Tom Clegg
The SSH server on each cloud VM allows the dispatcher to authenticate with a private key and execute shell commands as root.
37 1 Tom Clegg
38 6 Tom Clegg
h2. Configuration
39 1 Tom Clegg
40 6 Tom Clegg
Arvados configuration (currently a file in /etc) supplies cloud provider credentials, allowed node types, spending limits/policies, etc.
41 1 Tom Clegg
42 6 Tom Clegg
<pre><code class="yaml">
43
    CloudVMs:
44 8 Tom Clegg
      BootProbeCommand: "docker ps -q"
45 27 Tom Clegg
      SyncInterval: 1m    # how often to get list of active instances from cloud provider
46 8 Tom Clegg
      TimeoutIdle: 1m     # shutdown if idle longer than this
47
      TimeoutBooting: 10m # shutdown if exists longer than this without running BootProbeCommand successfully
48
      TimeoutProbe: 2m    # shutdown if (after booting) communication fails longer than this, even if ctrs are running
49
      TimeoutShutdown: 1m # shutdown again if node still exists this long after shutdown
50 6 Tom Clegg
      Driver: Amazon
51 8 Tom Clegg
      DriverParameters:   # following configs are driver dependent
52 6 Tom Clegg
        Region: us-east-1
53
        APITimeout: 20s
54 39 Tom Clegg
        AWSAccessKeyID: abcdef
55
        AWSSecretAccessKey: abcdefghijklmnopqrstuvwxyz
56 6 Tom Clegg
        ImageID: ami-0123456789abcdef0
57 1 Tom Clegg
        SubnetID: subnet-01234567
58
        SecurityGroups: sg-01234567
59 8 Tom Clegg
    Dispatch:
60
      StaleLockTimeout: 1m     # after restart, time to wait for workers to come up before abandoning locks from previous run
61
      PollInterval: 1m         # how often to get latest queue from arvados controller
62
      ProbeInterval: 10s       # how often to probe each instance for current status/vital signs
63
      MaxProbesPerSecond: 1000 # limit total probe rate for dispatch process (across all instances)
64
      PrivateKey: |            # SSH key able to log in as root@ worker VMs
65
        -----BEGIN RSA PRIVATE KEY-----
66
        MIIEowIBAAKCAQEAqYm4XsQHm8sBSZFwUX5VeW1OkGsfoNzcGPG2nzzYRhNhClYZ
67
        0ABHhUk82HkaC/8l6d/jpYTf42HrK42nNQ0r0Yzs7qw8yZMQioK4Yk+kFyVLF78E
68
        GRG4pGAWXFs6pUchs/lm8fo9zcda4R3XeqgI+NO+nEERXmdRJa1FhI+Za3/S/+CV
69
        mg+6O00wZz2+vKmDPptGN4MCKmQOCKsMJts7wSZGyVcTtdNv7jjfr6yPAIOIL8X7
70
        LtarBCFaK/pD7uWll/Uj7h7D8K48nIZUrvBJJjXL8Sm4LxCNoz3Z83k8J5ZzuDRD
71
        gRiQe/C085mhO6VL+2fypDLwcKt1tOL8fI81MwIDAQABAoIBACR3tEnmHsDbNOav
72
        Oxq8cwRQh9K2yDHg8BMJgz/TZa4FIx2HEbxVIw0/iLADtJ+Z/XzGJQCIiWQuvtg6
73
        exoFQESt7JUWRWkSkj9JCQJUoTY9Vl7APtBpqG7rIEQzd3TvzQcagZNRQZQO6rR7
74
        p8sBdBSZ72lK8cJ9tM3G7Kor/VNK7KgRZFNhEWnmvEa3qMd4hzDcQ4faOn7C9NZK
75
        dwJAuJVVfwOLlOORYcyEkvksLaDOK2DsB/p0AaCpfSmThRbBKN5fPXYaKgUdfp3w
76
        70Hpp27WWymb1cgjyqSH3DY+V/kvid+5QxgxCBRq865jPLn3FFT9bWEVS/0wvJRj
77
        iMIRrjECgYEA4Ffv9rBJXqVXonNQbbstd2PaprJDXMUy9/UmfHL6pkq1xdBeuM7v
78
        yf2ocXheA8AahHtIOhtgKqwv/aRhVK0ErYtiSvIk+tXG+dAtj/1ZAKbKiFyxjkZV
79
        X72BH7cTlR6As5SRRfWM/HaBGEgED391gKsI5PyMdqWWdczT5KfxAksCgYEAwXYE
80
        ewPmV1GaR5fbh2RupoPnUJPMj36gJCnwls7sGaXDQIpdlq56zfKgrLocGXGgj+8f
81
        QH7FHTJQO15YCYebtsXWwB3++iG43gVlJlecPAydsap2CCshqNWC5JU5pan0QzsP
82
        exzNzWqfUPSbTkR2SRaN+MenZo2Y/WqScOAth7kCgYBgVoLujW9EXH5QfXJpXLq+
83
        jTvE38I7oVcs0bJwOLPYGzcJtlwmwn6IYAwohgbhV2pLv+EZSs42JPEK278MLKxY
84
        lgVkp60npgunFTWroqDIvdc1TZDVxvA8h9VeODEJlSqxczgbMcIUXBM9yRctTI+5
85
        7DiKlMUA4kTFW2sWwuOlFwKBgGXvrYS0FVbFJKm8lmvMu5D5x5RpjEu/yNnFT4Pn
86
        G/iXoz4Kqi2PWh3STl804UF24cd1k94D7hDoReZCW9kJnz67F+C67XMW+bXi2d1O
87
        JIBvlVfcHb1IHMA9YG7ZQjrMRmx2Xj3ce4RVPgUGHh8ra7gvLjd72/Tpf0doNClN
88
        ti/hAoGBAMW5D3LhU05LXWmOqpeT4VDgqk4MrTBcstVe7KdVjwzHrVHCAmI927vI
89 1 Tom Clegg
        pjpphWzpC9m3x4OsTNf8m+g6H7f3IiQS0aiFNtduXYlcuT5FHS2fSATTzg5PBon9
90
        1E6BudOve+WyFyBs7hFWAqWFBdWujAl4Qk5Ek09U2ilFEPE7RTgJ
91
        -----END RSA PRIVATE KEY-----
92 9 Tom Clegg
    InstanceTypes:
93
    - Name: m4.large
94
      VCPUs: 2
95
      RAM: 7782000000
96
      Scratch: 32000000000
97
      Price: 0.1
98
    - Name: m4.large.spot
99
      Preemptible: true
100
      VCPUs: 2
101
      RAM: 7782000000
102
      Scratch: 32000000000
103
      Price: 0.1
104
    - Name: m4.xlarge
105
      VCPUs: 4
106
      RAM: 15564000000
107
      Scratch: 80000000000
108
      Price: 0.2
109
    - Name: m4.xlarge.spot
110
      Preemptible: true
111
      VCPUs: 4
112
      RAM: 15564000000
113
      Scratch: 80000000000
114
      Price: 0.2
115
    - Name: m4.2xlarge
116
      VCPUs: 8
117
      RAM: 31129000000
118
      Scratch: 160000000000
119
      Price: 0.4
120
    - Name: m4.2xlarge.spot
121
      Preemptible: true
122
      VCPUs: 8
123
      RAM: 31129000000
124
      Scratch: 160000000000
125
      Price: 0.4
126 6 Tom Clegg
</code></pre>
127 1 Tom Clegg
128 10 Tom Clegg
h2. Management API
129 1 Tom Clegg
130 10 Tom Clegg
APIs for monitoring/diagnostics/control are available via HTTP on a configurable address/port. Request headers must include "Authorization: Bearer {management token}".
131
132
Responses are JSON-encoded and resemble other Arvados APIs:
133
<pre><code class="json">
134
{
135
  "Items": [
136
    {
137
      "Name": "...",
138
      ...
139
    },
140
    ...
141
  ]
142
}
143
</code></pre>
144
145
@GET /arvados/v1/dispatch/instances@ lists cloud VMs. Each returned item includes:
146
* provider's instance ID
147
* hourly price (from configuration file)
148
* instance type (from configuration file)
149
* instance type (from provider's menu)
150
* UUID of the current / most recent container attempted (if known)
151
* time last container finished (or boot time, if nothing run yet)
152
153
@GET /arvados/v1/dispatch/containers@ lists queued/locked/running containers. Each returned item includes:
154
* container UUID
155
* container state (Queued/Locked/Running/Complete/Cancelled)
156
* desired instance type
157
* time appeared in queue
158
* time started (if started)
159
160 34 Tom Clegg
@POST /arvados/v1/dispatch/instances/:instance_id/hold@ puts an instance in "hold" state.
161
* if the instance is currently running a container, it is allowed to continue
162
* no further containers will be scheduled on the instance
163
* the instance will not be shut down automatically
164
165 10 Tom Clegg
@POST /arvados/v1/dispatch/instances/:instance_id/drain@ puts an instance in "drain" state.
166 1 Tom Clegg
* if the instance is currently running a container, it is allowed to continue
167
* no further containers will be scheduled on the instance
168 34 Tom Clegg
* the instance will be shut down automatically when all containers finish
169 1 Tom Clegg
170 34 Tom Clegg
@POST /arvados/v1/dispatch/instances/:instance_id/kill@ shuts down an instance immediately.
171
* the instance is terminated immediately via cloud API
172
* SIGTERM is sent to the container if one is running, but no effort is made to give it time to end gracefully before terminating the instance
173
174 10 Tom Clegg
h2. Metrics
175 13 Tom Clegg
176 10 Tom Clegg
Metrics are available via HTTP on a configurable address/port (conventionally :9005). Request headers must include "Authorization: Bearer {management token}".
177
178 13 Tom Clegg
Metrics include:
179
* [future] (summary) time elapsed between VM creation and first successful SSH connection to that VM
180 1 Tom Clegg
* [future] (summary) time elapsed between first successful SSH connection on a VM and ready to run a container on that VM
181 35 Tom Clegg
* (gauge) number of existing VMs
182 10 Tom Clegg
* (gauge) total hourly price of all existing VMs
183 1 Tom Clegg
* (gauge) total VCPUs and memory allocated to containers
184 10 Tom Clegg
* (gauge) number of containers running
185
* (gauge) number of containers allocated to VMs but not started yet (because VMs are pending/booting)
186 13 Tom Clegg
* (gauge) number of containers not allocated to VMs (because provider quota is reached)
187 14 Tom Clegg
188
h2. Logs
189 20 Tom Clegg
190 16 Tom Clegg
For purposes of troubleshooting, a JSON-formatted log entry is printed on stderr when...
191 20 Tom Clegg
192 16 Tom Clegg
|                                                              |...including timestamp and...|
193
|a new instance is created/ordered                             |instance type name|
194
|an instance appears on the provider's list of instances       |instance ID|
195
|an instance's boot probe succeeds                             |instance ID|
196
|an instance is shut down after boot timeout                   |instance ID, stdout/stderr/error from last boot probe attempt|
197
|an instance shutdown is requested                             |instance ID|
198
|an instance disappears from the provider's list of instances  |instance ID and previous state (booting/idle/shutdown)|
199
|a cloud provider API or driver error occurs                   |provider/driver's error message|
200
|a new container appears in the Arvados queue                  |container UUID, desired instance type name|
201
|a container is locked by the dispatcher                       |container UUID|
202
|a crunch-run process is started on an instance                |container UUID, instance ID, crunch-run PID|
203
|a crunch-run process fails to start on an instance            |container UUID, instance ID, stdout/stderr/exitcode|
204
|a crunch-run process ends                                     |container UUID, instance ID|
205
|an active container's state changes to Complete or Cancelled  |container UUID, new state|
206
|an active container is requeued after being locked            |container UUID|  
207
|an Arvados API error occurs                                   |error message|
208 14 Tom Clegg
209
210
(Example log entries should be shown here)
211
212 10 Tom Clegg
If the dispatcher starts with a non-empty ARVADOS_DEBUG environment variable, it also prints more detailed logs about other internal state changes, using level=debug.
213
214
h2. Internal details
215
216 38 Tom Clegg
h3. Worker lifecycle
217
218
<pre>
219 41 Tom Clegg
220
  ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
221
  │                                                                                                                                                    │
222
  │                  create() returns ID                                                                                                               │         want=drain
223
  │    ┌───────────────────────────────────────────────────────────────────────────┐                                      ┌────────────────────────────┼─────────────────────────────────────────┐
224
  │    │                                                                           ∨                                      │                            │                                         ∨
225
  │  ┌─────────────┐  appears in cloud list   ┌─────────┐  create() returns ID   ┌─────────┐  boot+run probes succeed   ┌──────┐  container starts   ┌─────────┐  container ends, want=drain   ┌──────────┐  instance disappears from cloud   ┌──────┐
226
  │  │ Nonexistent │ ───────────────────────> │ Unknown │ ─────────────────────> │ Booting │ ─────────────────────────> │      │ ──────────────────> │ Running │ ────────────────────────────> │          │ ────────────────────────────────> │ Gone │
227
  │  └─────────────┘                          └─────────┘                        └─────────┘                            │      │                     └─────────┘                               │          │                                   └──────┘
228
  │                                             │                                                                       │      │                                 idle timeout                  │          │
229
  │                                             │                                                                       │ Idle │ ────────────────────────────────────────────────────────────> │ Shutdown │
230
  │                                             │                                                                       │      │                                                               │          │
231
  │                                             │                                                                       │      │                                 probe timeout                 │          │
232
  │                                             │                                                                       │      │ ────────────────────────────────────────────────────────────> │          │
233
  │                                             │                                                                       └──────┘                                                               └──────────┘
234
  │                                             │                                                                         ∧      boot timeout                                                    ∧
235
  │                                             └─────────────────────────────────────────────────────────────────────────┼──────────────────────────────────────────────────────────────────────┘
236
  │                                                                                                                       │
237
  │   container ends                                                                                                      │
238
  └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘</pre>
239 38 Tom Clegg
240 10 Tom Clegg
h3. Scheduling policy
241 6 Tom Clegg
242
The container priority field determines the order in which resources are allocated.
243
* If container C1 has priority P1,
244
* ...and C2 has higher priority P2,
245
* ...and there is no pending/booting/idle VM suitable for running C2,
246
* ...then C1 will not be started.
247
248 1 Tom Clegg
However, containers that run on different VM types don't necessarily start in priority order.
249
* If container C1 has priority P1,
250 5 Peter Amstutz
* ...and C2 has higher priority P2,
251 6 Tom Clegg
* ...and there is no idle VM suitable for running C2,
252
* ...and there is a pending/booting VM that will be suitable for running C2 when it comes up,
253 1 Tom Clegg
* ...and there is an idle VM suitable for running C1,
254 6 Tom Clegg
* ...then C1 will start before C2.
255 10 Tom Clegg
256 1 Tom Clegg
h3. Special cases / synchronizing state
257 6 Tom Clegg
258
When first starting up, dispatcher inspects API server’s container queue and the cloud provider’s list of dispatcher-tagged cloud nodes, and restores internal state accordingly.
259 10 Tom Clegg
260 36 Tom Clegg
At startup, some containers might have state=Locked. The dispatcher can't be sure these have no corresponding crunch-run process anywhere until it establishes communication with all running instances. To avoid breaking priority order by guessing wrong, the dispatcher avoids scheduling any new containers until all such "stale-locked" containers are matched up with crunch-run processes on existing VMs (typically preparing a docker image) or all of the existing VMs have been probed successfully (meaning the locked containers aren't running anywhere and need to be rescheduled).
261
262 37 Tom Clegg
At startup, some instances might still be running containers that were started by a prior invocation, even though the (new) boot probe command fails. Such instances are left alive at least until the containers finish. After that, the usual rules apply: if boot probe succeeds before boot timeout, start scheduling containers; otherwise, shut down. This allows the operator to configure a new image along with a new boot probe command that only works on the new image, without disrupting users' work.
263 1 Tom Clegg
264 4 Peter Amstutz
When a user cancels a container request with state=Locked or Running, the container priority changes to 0. On its next poll, the dispatcher notices this and kills any corresponding crunch-run processes (or, if there is no such process, just unlocks the container).
265 6 Tom Clegg
266
When a crunch-run process ends without finalizing its container's state, the dispatcher notices this and sets state to Cancelled.
267 4 Peter Amstutz
268 5 Peter Amstutz
h3. Probes
269
270
Sometimes (on the happy path) the dispatcher knows the state of each worker, whether it's idle, and which container it's running. In general, it's necessary to probe the worker node itself.
271
272
Probe:
273
* Check whether the SSH connection is alive; reopen if needed.
274
* Run the configured "ready?" command (e.g., "grep /encrypted-tmp /etc/mtab"); if this fails, conclude the node is still booting.
275
* Run "crunch-run --list" to get a list of crunch-run supervisors (pid + container UUID)
276 6 Tom Clegg
277 5 Peter Amstutz
h3. Detecting dead/lame nodes
278 10 Tom Clegg
279 28 Tom Clegg
If a node has been up for N seconds without a successful probe, despite at least M attempts, it is shut down, even if it was running a container last time it was contacted successfully.
280
281
h1. Future plans / features
282
283
Per-instance-type VM images: It can be useful to run differently configured/tuned kernels/systems on different instance types, use different ops/monitoring systems on preemptible instances, etc. In addition to a system-wide default, each instance type could optionally specify an image.
284
285 1 Tom Clegg
Selectable VM images: When upgrading a production system, it can be useful to run a few trial containers on a new VM image before making it the default.